• webserver 返回json 如何去掉 <string xmlns="http://tempuri.org/">


    [WebMethod]
      public void GetJson(String sJson)
      {
        Context.Response.Charset = "UTF-8"; //设置字符集类型
        Context.Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
        Context.Response.Write(sJson);
        Context.Response.End();
      }

     url: 'WebService1.asmx/GetJson'

  • 相关阅读:
    vue笔记
    vue工具
    vue笔记
    vuex
    css方法
    html2canvas
    Fiddler
    vue经验
    vue经验
    html2canvas
  • 原文地址:https://www.cnblogs.com/t-mac-1/p/12456592.html
Copyright © 2020-2023  润新知