How can I make XHR.onreadystatechange return its result?(我怎样才能让 XHR.onreadystatechange 返回它的结果?)
问题描述
我是 JavaScript 编程新手.我现在正在开发我的 Google Chrome 扩展程序.这是不起作用的代码...:P
I'm new to JavaScript programming. I'm now working on my Google Chrome Extension. This is the code that doesn't work... :P
我想让 getURLInfo
函数返回它的 JSON 对象,并且想把它放到 resp
中.有人可以修复我的代码以使其正常工作吗?
I want getURLInfo
function to return its JSON object, and want to put it into resp
. Could someone please fix my code to get it work?
function getURLInfo(url)
{
var xhr = new XMLHttpRequest();
xhr.open
(
"GET",
"http://RESTfulAPI/info.json?url="
+ escape(url),
true
);
xhr.send();
xhr.onreadystatechange = function()
{
if (xhr.readyState == 4)
{
return JSON.parse(xhr.responseText);
}
}
}
var resp = getURLInfo("http://example.com/") // resp always returns undefined...
提前致谢.
推荐答案
你在这里处理一个异步函数调用.结果在到达时处理,而不是在函数完成运行时处理.
You are dealing with an asynchronous function call here. Results are handled when they arrive, not when the function finishes running.
这就是回调函数的用途.当结果可用时调用它们.
That's what callback functions are for. They are invoked when a result is available.
function get(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open("GET", url, true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
// defensive check
if (typeof callback === "function") {
// apply() sets the meaning of "this" in the callback
callback.apply(xhr);
}
}
};
xhr.send();
}
// ----------------------------------------------------------------------------
var param = "http://example.com/"; /* do NOT use escape() */
var finalUrl = "http://RESTfulAPI/info.json?url=" + encodeURIComponent(param);
// get() completes immediately...
get(finalUrl,
// ...however, this callback is invoked AFTER the response arrives
function () {
// "this" is the XHR object here!
var resp = JSON.parse(this.responseText);
// now do something with resp
alert(resp);
}
);
注意事项:
escape()
已被永远弃用.不要使用它,它不能正常工作.使用encodeURIComponent()
.- 您可以通过设置
open()
的async
参数使send()
调用同步为false
.这会导致您的 UI 在请求运行时冻结,而您不希望这样. - 有许多库旨在使 Ajax 请求变得简单而通用.我建议使用其中之一.
escape()
has been deprecated since forever. Don not use it, it does not work correctly. UseencodeURIComponent()
.- You could make the
send()
call synchronous, by setting theasync
parameter ofopen()
tofalse
. This would result in your UI freezing while the request runs, and you don't want that. - There are many libraries that have been designed to make Ajax requests easy and versatile. I suggest using one of them.
这篇关于我怎样才能让 XHR.onreadystatechange 返回它的结果?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我怎样才能让 XHR.onreadystatechange 返回它的结果?
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01