尝试使用requirejs实例化Marionette应用程序时,“对象不是函数”错误

时间:2013-04-11 11:31:46

标签: javascript backbone.js requirejs marionette

这是我第一次尝试使用Marionette。我正在尝试将Marionette应用程序实例化为requirejs模块。我一直在Marionette.js wiki上关注使用带有Require js文章的使用木偶: -

https://github.com/marionettejs/backbone.marionette/wiki/Using-marionette-with-requirejs

我认为我有所有的垫片,依赖项和文件,因为我能够在同一个地方实例化视图,模型等而没有错误,但我无法弄清楚我的应用程序的问题。任何帮助或指导将不胜感激!

这是我的index.html: -

<!DOCTYPE html>
<html>
<head>
    <title>Marionette Structure and Require AMD Proto</title>
    <link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div id="nav">

</div>
<div id="mainContent">

</div>
<script language="javascript">
    // convenience function, because console.log throws errors and crashes IE
    // this way you don't need to all logs to test in IE
    function trace(msg){
        try{
            console.log(msg);
        }catch(e){
            // suppressed error
        }
    }
</script>
<script src="js/lib/require.js" data-main="app.js"></script>
</body>
</html>

这是我的app.js: -

require.config({
    paths : {
        backbone : 'js/lib/backbone',
        underscore : 'js/lib/underscore',
        jquery : 'js/lib/jquery',
        marionette : 'js/lib/backbone.marionette'
    },
    shim : {
        jquery : {
            exports : 'jQuery'
        },
        underscore : {
            exports : '_'
        },
        backbone : {
            deps : ['jquery', 'underscore'],
            exports : 'Backbone'
        },
        marionette : {
            deps : ['jquery', 'underscore', 'backbone'],
            exports : 'Marionette'
        }
    }
})

require(
    ["jquery",
        "underscore",
        "backbone",
        "marionette",
        "js/shell/shellapp"
    ],
    function($, _, Backbone, Marionette, ShellApp) {
        $(function() {
           new ShellApp();
            trace("ShellApp: "+ShellApp);
        });
    }
);

最后这是我的shellapp.js: -

define( ["marionette"], function (Marionette) {

    // set up the app instance
    var ShellApp = new Marionette.Application();

    // configuration, setting up regions, etc ...
    ShellApp.addRegions({
        nav: '#nav',
        main: '#mainContent'
    });
    ShellApp.on('initialize:after', function(){
        trace("initialize:after");
    });
    // export the app from this module
    return ShellApp;
});

把它们放在一起,我在app.js第42行得到“Uncaught TypeError:object is not function”

非常感谢任何到目前为止的人!

萨姆

1 个答案:

答案 0 :(得分:3)

我的回答太长了,无法发表评论!

您正在导出构造的Object,而不是构造函数本身:

var ShellApp = new Marionette.Application()
...
return ShellApp;

这正是导入的内容,因此您无需创建另一个new

首先,我将ShellApp重命名为shellApp以表示实例,而不是构造函数(这是一种常见的命名约定)。我认为在教程中他们违反了这个惯例是非常误导的:

MyApp = new Backbone.Marionette.Application();

(假设我在这里的右侧)。

我现在假设您只是在应用的生命周期内传递此Marionette.Application的单个实例。

在教程中,shows导出 newed-up Marionette.Application(与您相同),但未显示实际使用情况进口时导入对象后,您可以访问它的属性,例如:

shellApp.addInitializer(function(options){
    // stuff
});

更多here