服务器从json到javascript警报的响应
本文关键字:响应 javascript json 服务器 | 更新日期: 2023-09-27 18:29:02
我使用webrtc(javascript、json、ajax)客户端发送请求,并使用c#web服务在服务器上进行验证。我发布了一个json请求,结果在浏览器控制台中显示为xml。有没有办法使用javvascript将响应作为警报或弹出消息?
jQuery.ajax({
url: urlPath,
type: "POST",
contentType: "application/jsonp; charset=utf-8",
data: jsond,
dataType: "jsonp",
success: function (response) {
alert("Details saved successfully!!!" + response);
alert(xhr.responseText);
},
根据http://api.jquery.com/jQuery.ajax/成功:ajax调用传递了三个参数1.数据(普通对象)2.文本状态(字符串)3.jqXHR对象(jqXHR的类型)
要提取serverResponse,请在"success"回调中写入
success: function (data,TextStatus, xhr) {
alert(xhr.responseText);
},
或者,如果您想显示数据(从服务器返回),那么您需要像这样解析数据。
success: function (data,TextStatus, xhr) {
var newData = JSON.parse(data)
alert(newData);
}