作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
启动应用程序的简单代码
define(['marionette'],function (Marionette) {
var MyApp = new Backbone.Marionette.Application();
MyApp.addInitializer(function(options) {
})
MyApp.addRegions({
mainRegion: "#content"
});
})
// MarionetteJS (Backbone.Marionette)
// ----------------------------------
// v3.1.0
// Backbone.js 1.3.3
如何修复?
最佳答案
从 Marionette 版本 3 开始,不再支持 addRegions
。相反,您可以指定您的根 region
,如下所示:
var App = Backbone.Marionette.Application.extend({
region: '#content',
initialize: function() {
// init
},
onStart: function() {
// start application
}
});
var myApp = new App();
myApp.start();
您可以查看 Marionette v3 documentation了解更多。
关于javascript - AddRegions 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40608500/
启动应用程序的简单代码 define(['marionette'],function (Marionette) { var MyApp = new Backbone.Marion
我是一名优秀的程序员,十分优秀!