我试图为我的主干视图使用模板。我尝试使用 underscore.template 让它运行。问题在于,由于 chrome 扩展的 manifest_version 2 存在一些安全限制。我认为原因是因为不再允许内联块。在这个小例子中,我加载了一个模板并尝试渲染它。然后我得到错误:
未捕获的错误:此上下文不允许从字符串生成代码。
我也在我的 html 文件中使用 Handlebars.js 和一个模板进行了尝试。它在普通的浏览器窗口中工作。但它不作为 chrome 扩展。
那么如何在带有 manifest_version 2 的 chrome 扩展中使用带有主干.js 的模板呢?
带下划线(不起作用):
define [
'jquery'
'backbone'
'lib/facade'
'text!templates/loginTemplate.js'
],
($, Backbone, facade, LoginTemplate) ->
'use strict'
class LoginView extends Backbone.View
tagName: 'div'
events: {
}
initialize: (options) ->
@el = options.el
render: ->
console.log 'LoginView: render()'
$(@el).html(_.template(LoginTemplate, {}))
带车把(不起作用):
index.html 中的模板:
<!-- templates -->
<script id="loginTemplate" type="text/x-handlebars-template">
<form class="form-horizontal">
<fieldset>
<legend>Login</legend>
<div class="control-group">
<label class="control-label" for="email">Email:</label>
<div class="controls">
<input type="text" class="input-xlarge" id="email" name="email">
</div>
</div>
<div class="control-group">
<label class="control-label" for="password">Passwort:</label>
<div class="controls">
<input type="password" class="input-xlarge" id="password" name="password">
</div>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-primary">Login</button>
</div>
</fieldset>
</form>
</script>
在我看来:
define [
'jquery'
'backbone'
'lib/facade'
],
($, Backbone, facade) ->
'use strict'
class LoginView extends Backbone.View
tagName: 'div'
events: {
}
initialize: (options) ->
@el = options.el
render: ->
console.log 'LoginView: render()', $("#loginTemplate")
$(@el).html(Handlebars.compile($("#loginTemplate").html()))