欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

快速解决owin返回json字符串多带了双引号"多了重string转义字符串

程序员文章站 2023-08-29 20:59:42
解决方法: [httpget] public httpresponsemessage getsystemtime() { cl...

解决方法:

 [httpget]
    public httpresponsemessage getsystemtime()
    {
      cltime time = new cltime();
      time.datetime = datetime.now.tostring("yyyy-mm-dd hh:mm:ss");
      string relsut = jsonconvert.serializeobject(time);
      var resp = new httpresponsemessage { content = new stringcontent(relsut, system.text.encoding.utf8, "application/json") };
      return resp;

    }

以上这篇快速解决owin返回json字符串多带了双引号"多了重string转义字符串就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。