有人能告诉我“<%%”“<%”之间的区别吗
<%%= 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