ASMX ファイル出力を JSON に変換します
質問:
ResponseFormat 構成を使用しているにもかかわらず、ASMX Web サービスによって生成される出力は、必要な JSON 形式ではなく XML のままです。
コードビハインド:
<code class="language-csharp">[System.Web.Script.Services.ScriptService] public class _default : System.Web.Services.WebService { [WebMethod] [ScriptMethod(UseHttpGet = true,ResponseFormat = ResponseFormat.Json)] public string[] UserDetails() { return new string[] { "abc", "def" }; } }</code>
解決策:
XML ラッピングを行わずにプレーンな JSON を出力するには、コードを次のように変更します。
コードビハインド:
<code class="language-csharp">[System.Web.Script.Services.ScriptService] public class _default : System.Web.Services.WebService { [WebMethod] public void UserDetails() { HttpContext.Current.Response.Write("{property: value}"); } }</code>
手順:
WebMethod の戻り値の型を void に変更し、Response.Write メソッドを使用して JSON 文字列を HttpResponse に直接書き込みます。このメソッドは、XML ラッピングのないプレーンな JSON 応答を提供します。
以上がASMX Web サービスの XML 出力を Pure JSON に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。