AlmondJS - 需要外部 url
AlmondJS - Require external url
我有一个 AMD 模块
require(["//google-analytics.com/analytics.js"]);
它适用于 requireJS,但是,当使用杏仁时,我得到 "Uncaught Error: undefined missing //google-analytics.com/analytics.js" 错误。
这是否意味着杏仁不支持要求外部脚本?
请阅读其中一位 almondjs 作者对 github 的评论 - 看起来外部脚本不支持也不会在不久的将来得到支持。
Does this mean almond does not support requiring external scripts?
是的,就是这个意思。来自 "Restrictions" section ,第一项:
optimize all the modules into one file -- no dynamic code loading.
(强调已添加。)
我有一个 AMD 模块
require(["//google-analytics.com/analytics.js"]);
它适用于 requireJS,但是,当使用杏仁时,我得到 "Uncaught Error: undefined missing //google-analytics.com/analytics.js" 错误。
这是否意味着杏仁不支持要求外部脚本?
请阅读其中一位 almondjs 作者对 github 的评论 - 看起来外部脚本不支持也不会在不久的将来得到支持。
Does this mean almond does not support requiring external scripts?
是的,就是这个意思。来自 "Restrictions" section ,第一项:
optimize all the modules into one file -- no dynamic code loading.
(强调已添加。)