我试图找出如何在不使用模块本身的相对路径的情况下命名模块。
例如:
而不是这样做:
//module is defined in app/js/routers.js
define('app/js/routers',['app/js/currentView'],function(currentView) {
});
我宁愿这样做:
//module is defined in app/js/routers.js
define('routers',['app/js/currentView'],function(currentView
有我的跨域调用的实现,它使用了所需的is文本插件。
htaccess文件在我的跨域站点
的模板文件夹中
Header set Access-Control-Allow-Origin "*"
textremote.js
define(['text','module'],function (text, module) {
// Load the cross-domain url from the config
var remoteUrl = module.config().remoteUrl;
// Sto
有没有一种方法可以保留一个paths.js文件来跟踪所有路径
//i know you can do this where configobject.paths = require('paths');
requirejs.config(configobject)
//and r.js build config
({
paths:require('paths'),
})