使用带有requirejs的miso.ds

时间:2012-11-19 20:27:37

标签: javascript requirejs

我正在尝试将Miso数据集(http://misoproject.com/dataset/)与requirejs一起使用,我想知道我的需要js定义有什么问题(我很新要求和味噌),Miso将是undefined(jquery的设置没问题)

require.config({
    // base url for vendor libs
    // files present : jquery.js, lodash.js, miso.ds.js, moment.js, underscore.deferred.js, underscore.math.js
    baseUrl: 'js/lib',
    // app components are stored in the js/app folder, so they'll start with 'app/'
    paths: {
        app: '../app',
    },

    shim: {
        // miso.ds shim, with its dependencies
        'miso.ds' : {
            deps : ['lodash', 'moment', 'underscore.deferred', 'underscore.math'],
            exports: 'Miso'
        }
    }
});

// start the main app logic.
require(['jquery', 'miso.ds'],
function ($, Miso) {
    console.log($);
    console.log(Miso);
});

有什么想法吗?

此致

1 个答案:

答案 0 :(得分:0)

此处还讨论了这个问题:https://github.com/misoproject/dataset/pull/174 这是Miso的一个错误。 0.4.1版本解决了这个问题。