我从dojo教程中尝试了一些示例代码。我有
<button dojoType="dijit.form.Button" id="helloButton">
Test
<script type="dojo/method" event="onClick">
dojo.xhrGet({
url: 'response.txt',
load: testCallback,
error: testError
});
alert("getting thru");
</script>
</button>
当我点击我的按钮时,我的错误回调运行了,但我无法弄清楚原因。
这是testCallback
function testCallback(data, ioArgs)
{
alert(data);
}
我有一个名为response.txt的文件,与index.html位于同一个文件夹中。我真的很困惑!
有什么建议吗?
由于
应
答案 0 :(得分:1)
我重启电脑,一切似乎都有效。幸运的是,我无法重现错误。回顾一下:
1)在response.txt上设置权限 2)确保使用netstat -an
打开端口8000感谢所有人的努力!