使用requirejs加载库和其他模块

时间:2015-06-18 22:36:18

标签: javascript highcharts requirejs

我正在努力了解如何使用requirejs加载外部库和其他模块。

这就是我所拥有的:

这样可行,但对我来说似乎不对:

requirejs.config({
  paths: {
      highcharts: 'http://localhost:3000/hicharts/js/highcharts'
  }
});
requirejs.config({
  paths: {
      exporting: 'http://localhost:3000/hicharts/js/modules/exporting'
  }
});

我有点期待这个有用:

require.config({
  paths: {
      highcharts: 'http://localhost:3000/hicharts/js/highcharts',
      exporting: 'http://localhost:3000/hicharts/js/modules/exporting'
  }
});

但它似乎没有公开导出模块,即使它是从Web服务器调用的。我在这里遗漏了什么,有没有人知道它的记录在哪里?我似乎找不到太多讨论它的东西。

0 个答案:

没有答案