0

在 Info.aspx.cs 中,我从 WebService 获得一个压缩文件。解码内容后,我有一个 xml 文件。使用XmlToJSON结果JavaScriptSerializer是一个 JSON 对象。如何在 Info.aspx 中使用此对象?

4

3 回答 3

0

假设您的 json 格式低于 n

 var A={
    propertyOne: "propertyOne",
    propertyTwo: "propertyTwo"
 }

使用如下:

A.propertyOne
A.propertyTwo
于 2013-07-12T09:01:17.450 回答
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'
                });
于 2013-07-12T09:09:53.373 回答
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"); }
                });

希望有帮助

于 2013-08-20T14:46:38.827 回答