在Info.aspx.cs中,我从WebService获取一个压缩文件。解码内容后我有一个xml文件。使用XmlToJSON
和JavaScriptSerializer
结果是一个JSON对象。我如何在Info.aspx中使用此对象?
答案 0 :(得分:0)
假设你的json低于格式
var A={
propertyOne: "propertyOne",
propertyTwo: "propertyTwo"
}
使用如下:
A.propertyOne
A.propertyTwo
答案 1 :(得分:0)
试试这个,
var returnValue = new Object();
returnValue.entityfirst = $("#entityfirst ").val();
returnValue.entitysecond = $("#entitysecond ").val();
returnValue.entitythird = $("#entitythird").val();
var request = $.ajax({
url: ..., //access method url
type: 'POST',
cache: false,
data: JSON.stringify(returnValue),
dataType: 'json',
contentType: 'application/json; charset=utf-8'
});
答案 2 :(得分:0)
在您的aspx页面中,如果进行动态加载,则必须使用javascript。
例如你打电话并接受这样的(jQuery):
$.ajax({
url: "myUrlPageForCallJsonService",
type: 'POST',
data: "yourParamsForGettingJson"
dataType: 'json',
complete: function (results) { console.log('complete'); },
success: function (data) { //You logic in the success function
for (var i = 0; i < data.length; i++) {
console.log("success");
_html += '<li>'+ data[i].Param1 + '</li>';
}
_html += '</ul>';
$('#renderbody').html(_html);
},
fail: function (data) { console.log("fail"); }
});
希望有帮助