我尝试从js文件中获取一些函数,我通过 requirejs 包含它,但它不起作用。
这就是我所做的:
test.js
define(['jquery'], function($){
"use strict";
function hello()
{
alert('hello from function');
}
});
requirejs-config.js
var config = {
map: {
'*': {
module: 'Vendor_module/js/test',
}
}
};
console.log('foo'); // i get well "foo" in console
HTML
<script type="text/javascript">
require(['jquery', 'module'], function($) {
hello();
});
</script>
结果:
ReferenceError: hello is not defined
感谢。
答案 0 :(得分:0)
您需要在test.js中返回hello
函数
define(['jquery'], function($){
"use strict";
return function hello()
{
alert('hello from function');
}
});
并且您可以在要求的回调中使用该函数。
require(['jquery', 'module'], function($, hello) {
hello();
});