我不能設置路徑本地
我嘗試添加本地路徑,我在我的代碼中使用,但是當我在本地服務器上運行的工程中,示值誤差在要求。在螢火蟲控制檯。
這裏是我的代碼無法設置路徑名本地
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en" />
<title>Dojo Tutorial</title>
<link rel="stylesheet" href="C:\inetpub\wwwroot\Dojo\dijit\themes\claro/claro.css" />
<link rel="stylesheet" href="C:\inetpub\wwwroot\Dojo\demo\app/main.css" />
<script type="text/javascript">
appConfig = {
baseUrl: location.href.substring(0,location.href.lastIndexOf("/")+1)
};
var dojoConfig = {
async: true,
parseOnLoad: true,
baseUrl: '.',
packages: [
'dojo',
'dijit',
'dojox',
'demo'
]
};
</script>
<script type="text/javascript" src="C:\inetpub\wwwroot\Dojo\dojo/dojo.js"></script>
<script type="text/javascript">
require({
packages: [{
name: 'demo',
location: appConfig.baseUrl + '/demo/' }]
},
[
"demo"
]
);
</script>
</head>
<body class="claro">
</body>
</html>
我已經修復了您的格式,現在請提供您遇到的實際錯誤。 – Hamish
我在我的代碼中提到的要求出現錯誤。 –