gpt4 book ai didi

javascript - xhr.upload.addEventListener 加载有空 xhr.responseText

转载 作者:行者123 更新时间:2023-11-30 09:06:00 27 4
gpt4 key购买 nike

xhr.open('put',url,false)
xhr.upload.addEventListener('load',function(e){alert(xhr.responseText)},false)

为什么 xhr.responseText 是空的?当使用xhr.onreadystatechange 4 xhr.responseText有数据?

最佳答案

Gert 想说的是,您必须将事件监听器添加到 xhr 对象,而不是 xhr.upload。我不完全确定为什么和 the spec不是很清楚。这与默认的异步请求无关。

代替:

xhr.upload.addEventListener('load', function(e){ alert(xhr.responseText); }, false);

你必须做到:

xhr.addEventListener('load', function(e){ alert(xhr.responseText); }, false);

关于javascript - xhr.upload.addEventListener 加载有空 xhr.responseText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4928845/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com