1.我在requirejs里入口引用了写的一个函数方法js
require.config(
{
baseUrl: "/Scripts",
shim:{
'fundComponent':{
deps: ['jquery'],
exports: 'fundComponent'
}
}
}
);
require(['fundComponent'],function(fundComponent){
function a(){
}
//代码
}
在fundComponent.js中直接使用
a()
会显示调不到方法 ,请问这是什么问题,有什么好的解决方案, 谢谢。
慕虎7371278
相关分类