主站点https://dojotoolkit.org/documentation/tutorials/1.10/hello_dojo/index.html提供的第一个hello dojo教程对我不起作用。
我复制粘贴代码,但'Hello'保持原样。 em标签没有添加。任何帮助!
答案 0 :(得分:0)
我下载了dojo.js并将文件放在hellodojo.html所在的位置。然后我更改了hellodojo.html的代码,如下所示:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tutorial: Hello Dojo!</title>
</head>
<body>
<h1 id="greeting">Hello</h1>
<!-- load Dojo -->
<script src="./dojo.js" data-dojo-config="async: true"></script>
<script>
require([
'dojo/dom',
'dojo/dom-construct'
], function(dom, domConstruct) {
var greetingNode = dom.byId('greeting');
domConstruct.place('<em> Dojo!!~!!</em>', greetingNode);
});
</script>
</body>
</html>
在这里你会看到我改变了陈述
<script src="//ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/dojo.js"
data-dojo-config="async: true"></script>
到
<script src="./dojo.js" data-dojo-config="async: true"></script>
然后它按预期工作,因为dojo.js现在可用。 我也可以在源代码中看到chrome扩展中的'dojo.js'。