requirejs可以通过http加载js吗

发布于 2022-09-02 13:01:28 字数 79 浏览 14 评论 0

requirejs可以通过http加载js吗,
比如:require("http://api.baidu.com/map/1.2.js")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙气飘飘 2022-09-09 13:01:28

支持的!
支持与否,为啥不自己试试呢?

但是不是你那样写的,要先配置。

require.config({
  paths:{
    'baiduapi':'http://api.baidu.com/map/1.2.js'
  }
});
//调用
require('baiduapi');

可以参考这里:
http://requirejs.org/docs/api.html#confi...

There may be times when you do want to reference a script directly and not conform to the "baseUrl + paths" rules for finding it. If a module ID has one of the following characteristics, the ID will not be passed through the "baseUrl + paths" configuration, and just be treated like a regular URL that is relative to the document:
Ends in ".js".
Starts with a "/".
Contains an URL protocol, like "http:" or "https:".

顺便推荐一下,我写的模块加载,实现原理和require,seajs之类的不一致。


https://github.com/donghanji/pm

也是支持url的方式加载模块的。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文