我使用簡單的Web服務「的.asmx」。在我的web服務返回的一些數據,如:web服務返回JSON數據,但有XML頭怎麼才能去除
<?xml version="1.0" encoding="utf-8" ?>
<string xmlns="http://tempuri.org/">
{"Table":[{"minlatency":16.0,"Time":"\/Date(1328248782660+0530)\/"},{"minlatency":7.0,"Time":"\/Date(1328248784677+0530)\/"},{"minlatency":13.0,"Time":"\/Date(1328248786690+0530)\/"},{"minlatency":6.0,"Time":"\/Date(1328248788690+0530)\/"},{"minlatency":20.0,"Time":"\/Date(1328248790707+0530)\/"}]}</string>
我使用:
[ScriptMethod(ResponseFormat = ResponseFormat.Json, XmlSerializeString = false)]
[webmethod]
在我的服務中,並且它在ajax callback
給出錯誤,我希望以json格式返回值。
您可以包含實際方法的代碼嗎? – dillenmeister 2012-02-15 05:56:22
從技術上講,*是* XML,它恰好包含JSON。 – 2016-06-09 20:14:44