使用“旧”Dojo,可以将第二个参数传递给 Xhr 请求ioargs
的load
函数(参见此处的示例 6)。这ioargs
提供了(除其他外)请求的时间戳和状态代码。
但是如何使用新的“更清洁”(并且向前兼容)Dojo 来实现这一点?不幸的是,我在当前文档
中找不到任何提示。
以下应该是上述引用示例的移植到“新”Dojo。但是,ioargs
将是未定义的:
require( "dojo/request/xhr", "dojo/dom", "dojo/domReady!",
function(request, dom){
// Look up the node we'll stick the text under.
var targetNode = dom.byId("getLicenseStatus");
// The parameters to pass to xhrGet, the url, how to handle it, and the callbacks.
request.get(
"{{dataUrl}}dojo/LICENSE",
{
handleAs: "text",
preventCache: true
}
).then(
function(data, ioargs){
// FIXME: ioargs is undefined
targetNode.innerHTML = "XHR returned HTTP status: " + ioargs.xhr.status;
},
function(error){
targetNode.innerHTML = "An unexpected error occurred: " + error.response.status + ": " + error.response.text;
}
);
}
);
我需要更改什么才能使请求的时间戳和状态代码在加载函数中可用?