我有一个项目
我希望包含iscroll v5 但我不知道如何加载它并使用requirejs初始化它...
我已经尝试在项目的任何分支中找到解决方案,但到目前为止我没有找到任何东西。
我是JS的新手,所以我需要一些帮助,任何人都可以发布示例或提供一个简单的演示?
答案 0 :(得分:4)
您可以在配置文件中包含iscroll plugin
的路径,您可以在其中声明其他文件的依赖关系和路径。
require.config({
locale: 'en_us',
baseUrl: 'baseUrl',
paths: {
// Paths of the libraries being used
'Iscroll' : 'relative path to the file',
......
...... Other files
},
shim : { // If the library does not support AMD
'Iscroll': {
exports: 'Iscroll'
},
}
});
现在,如果你想在一个特定的模块中使用它,只需包含它
define(['Iscroll', other args], function(Iscroll, other args) {
});