gpt4 book ai didi

javascript - 我的 requirejs 设置有什么问题?

转载 作者:行者123 更新时间:2023-11-30 12:54:18 25 4
gpt4 key购买 nike

我的 requirejs 配置文件看起来是正确的。但是当我进入我的函数来启动我的应用程序时,我只能访问 jQuery。有人可以看看我的配置文件并告诉我我做错了什么吗?为什么我看不到 Backbone 或 Underscore,为什么我能看到 jQuery?这是我的配置文件:

require.config({
paths: {
jquery: "libs/jquery/jquery",
underscore: 'libs/underscore/underscore',
backbone: "libs/backbone/backbone"
},
shims: {
backbone: {
deps: [
'underscore',
'jquery'
],
exports: 'Backbone'
},
underscore: {
exports: '_'
}
}
});

require(['jquery', 'underscore', 'backbone'], function($, _, Backbone) {
'use strict';

debugger;
});

感谢您的帮助。

最佳答案

我认为您使用的是垫片而不是单数形式的垫片,更改它应该可以解决您的问题。

shim: {
underscore: {
exports: '_'
},
backbone: {
deps: [
'underscore',
'jquery'
],
exports: 'Backbone'
}
}

关于javascript - 我的 requirejs 设置有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19798539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com