「<%%」「<%」の違いを教えてもらえますか
<%%= hello %>
<%= hello %>
私はグーグル検索で適切な答えを見つけることができませんでした。
説明があれば役に立ちます:)
**Index.html**
<div id="container">Loading...</div>
<script type="script/template" id="hello_sen">
<%= hello %>
</script>
**Backbone View**
class Bckbone.Views.EntriesIndex extends Backbone.View
initialize: ->
@template = _.template($("#hello_sen").html())
render: ->
datas = {hello: "Senthil"}
$(@el).html(@template(datas))
this