$script.js 嵌套依赖项
有没有办法使用 $script.js 进行以下工作:
control.js
$script('accounts.js', function() {
// fnA
});
accounts.js
$script('util.js', function() {
// fnB
});
我希望执行 fnB
在 fnA
之前,但事实并非如此。因此,fnB
中创建的命名空间和对象不可用于 fnA
,即帐户功能。
util.js 仅包含一个命名空间函数。
Is there a way to make the following work with $script.js:
control.js
$script('accounts.js', function() {
// fnA
});
accounts.js
$script('util.js', function() {
// fnB
});
I would have hoped that fnB
is executed before fnA
, but it's not. Therefore, namespaces and objects created in fnB
are not available to fnA
, namely the accounts functionality.
util.js contains only a namespace function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该这样做:
并且
accounts.js
不需要加载utils.js
。希望这有帮助
You should do this:
And it wouldn't be necessary for
accounts.js
to loadutils.js
.Hope this helps