码迷,mamicode.com
首页 > 微信 > 详细

微信小程序使用content-type等于x-www-form-urlencoded方式使用request请求数据

时间:2018-11-11 23:42:34      阅读:1239      评论:0      收藏:0      [点我收藏+]

标签:cat   orm   turn   使用   else   方法   程序开发   amp   javascrip   

因为服务器只能接收x-www-form-urlencoded方式接收前端收到的数据 所以微信小程序开发的时候,必须鼓捣这个问题。

微信默认使用content-type是 application/json

用wx.request方法改掉header为x-www-form-urlencoded比较简单

wx.request({
  content-type: application/x-www-form-urlencoded

})

这么干就可以了。 

 

但问题是,微信小程序,似乎不会把我们的数据自动转换成为该格式数据。

 

解决方案是使用下面这种方法

 

function JSON_to_URLEncoded(element,key,list){
  var list = list || [];
  if(typeof(element)==‘object‘){
    for (var idx in element)
      JSON_to_URLEncoded(element[idx],key?key+‘[‘+idx+‘]‘:idx,list);
  } else {
    list.push(key+‘=‘+encodeURIComponent(element));
  }
  return list.join(‘&‘);
}

 

测试

var data = {
  users : [
    {
      "id": 100,
      "name": "Stefano"
    },
    {
      "id": 200,
      "name": "Lucia"
    },
    {
      "id": 300,
      "name": "Franco"
    },
  ],  
  time : +new Date
};

console.log(
  JSON_to_URLEncoded(data)
);

/*
Output:
users[0][id]=100&users[0][name]=Stefano&users[1][id]=200&users[1][name]=Lucia&users[2][id]=300&users[2][name]=Franco&time=1405014230183
*/

如果你是使用ES2015,试试一行代码实现这个方法功能。 但你是复杂的数据,还是不要用下面这个方法了。

 

const toUrlEncoded = obj => Object.keys(obj).map(k => encodeURIComponent(k) + ‘=‘ + encodeURIComponent(obj[k])).join(‘&‘);

toUrlEncoded({hello: ‘world‘, message: "JavaScript is cool"});
// => "hello=world&message=JavaScript%20is%20cool"

  

微信小程序使用content-type等于x-www-form-urlencoded方式使用request请求数据

标签:cat   orm   turn   使用   else   方法   程序开发   amp   javascrip   

原文地址:https://www.cnblogs.com/saving/p/9943554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!