- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我发现当使用 templateHelpers 并将其设置为函数时,它根本不显示。
但是当我在 templateHelper 中使用变量时,它就会显示。基本上他们在这个链接中有什么https://github.com/marionettejs/backbone.marionette/blob/master/docs/marionette.view.md#viewevents ,它对我来说不起作用。
jsfiddle 在这里 http://jsfiddle.net/gerlstar/Ms7uN/2/
model2 = Backbone.Model.extend({
defaults: {
age: '',
name: ''
},
initialize: function () {
this.set({
name: "Terry"
});
}
});
someview = Marionette.ItemView.extend({
tagName: "div",
template: "#tpl-box",
templateHelpers: {
showMessage: function () {
return " is the coolest!";
}
}
});
var app = new Marionette.Application();
app.container = new Backbone.Marionette.Region({
el: "#container"
});
app.layout = new Backbone.Marionette.Layout.extend({
template: "#tpl-layout",
region: {
rgn: "#rgn1"
}
});
var m = new model2();
var view2 = new someview({
model: m
});
app.on("initialize:after", function() {
layout = new app.layout();
app.container.show(layout);
layout.rgn.show(view2);
});
app.start();
HTML
<div id="container" class="container"></div>
<script id="tpl-box" type="text/html">
<%= name %>
</script>
<script id="tpl-layout" type="text/html">
< h3 > My layout < /h3>
<div id="rgn1">
</div >
</script>
最佳答案
这是你的固定 fiddle http://jsfiddle.net/pSv9h/
new
关键字,扩展主干/marionnete 类时,不应使用 new
关键字。
app.layout = Backbone.Marionette.Layout.extend
而不是 app.layout = new Backbone.Marionette.Layout.extend
地区
不是地区
您需要在regions
内定义您的区域,而不是region
关于javascript - Backbone /Marionette : templateHelpers not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21437719/
我发现当使用 templateHelpers 并将其设置为函数时,它根本不显示。 但是当我在 templateHelper 中使用变量时,它就会显示。基本上他们在这个链接中有什么https://git
我不知道为什么这段代码不起作用。 阅读documentation , 应该调用 templateHelpers。 我的目标是将 this.collection.length 传递给模板。 有什么提示吗
我的 Backbone Marionette 和 ItemView 渲染有问题。 我需要将一个值从复合 View 传递到它的每个项目 View 。 该值正确包含在项目 View 的选项数组中,但是,我
大致上我有这样的事情: my collection; //a collection of models with ids Layout = Backbone.Marionette.Layout.ext
我是一名优秀的程序员,十分优秀!