当前位置:
首页 > Python基础教程 >
-
C#教程之C#开发微信小程序(2)
另外注意如果你的json数据是读取文件获取到的,且你的文件编码格式为utf8,那么微信小程序请求到的数据,可能会含有bom头(\ufeff),直接查看请求返回的数据,你会发现前面含有红点,然而,我没有复现这种情况。
json.txt为utf8格式的文本文件,其中的内容为:{"Name":"邓伟"}
public string GetJson(string json) { //return "{\"name\":\"dengwei\"}"; //Person person = new Person(); //person.Name = "邓伟"; //return JsonConvert.SerializeObject(person); var mappedPath = System.Web.Hosting.HostingEnvironment.MapPath("~/"); string content = File.ReadAllText(mappedPath + "\\json.txt"); return content; }
如果存在bom头,只需要替换掉\ufeff,然后再转json对象即可。
/** * 生命周期函数--监听页面显示 */ onShow: function () { wx.request({ url: 'http://localhost:8080/api/lazyorders/GetJSON?json=' + '1', success: function (res) { var data = res.data; data = data.replace(/\ufeff/g, "");//重点 var json = JSON.parse(data); console.log(json); console.log(json.Name); } }) },
请求到的结果如下:
空闲时间写的微信小程序demo运行效果:
web api:
牛人之所以是牛人,是因为你现在在踩的坑,他曾经都已经踩过了。