我有一个项目
我想包括iscroll v5 ,但我不知道如何加载它并用requirejs初始化它......
我已经尝试在项目的任何分支中找到解决方案,但到目前为止我没有找到任何东西。
我是 JS 的新手,所以我需要一些帮助,任何人都可以发布示例或提供简单的演示?
我有一个项目
我想包括iscroll v5 ,但我不知道如何加载它并用requirejs初始化它......
我已经尝试在项目的任何分支中找到解决方案,但到目前为止我没有找到任何东西。
我是 JS 的新手,所以我需要一些帮助,任何人都可以发布示例或提供简单的演示?
您可以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) {
});