0
我有以下文件結構:需要改變的baseUrl在同一個文件
|- index.html
vendor
|- jquery.min.js (some libraries)
js
|- app.js
當我嘗試使用下面的URL來加載從我的瀏覽器中的index.html:
http://localhost/~myname/WebFrontend/
我在conf.js
中收到以下錯誤(請參閱關於conf.js的評論)。
我該如何解決這個問題?
// index.html
<script data-main="js/conf" src="./vendor/require.js"></script>
// conf.js
requirejs.config({
baseUrl: '../vendor',
paths: {
jquery: 'jquery.min', // it works
}
});
require(['../js/app']); // http://localhost/~mynane/js/router.js not found
require(['./js/app']); // http://localhost/~myname/vendor/js/router.js not found
// I would like to point to http://localhost/~antoniopierro/WebFrontend/js/router.js
你的意思是app.js找不到或者你真的指的是router.js? –