javascript - weex POST请求web端body服务器获取不到参数
世界只因有你
世界只因有你 2017-07-05 11:05:14
0
2
1589

POST请求服务器取不到参数,发现Stream.fetch采用的是直接将body变成字符串专递给服务器,而我们的服务器需要的像Jquery那个样的Ajax请求(&key=value)的形式,在charles拦截的到参数在request中为key值,而jquery中得到的是keyValue样式,请问在哪个文件里面修改提交body的方式?

stream.fetch({

    method: 'POST',
    url: POST_URL,
    type:'json',

// headers: {'Content-Type': 'application/json; charset=utf-8',},

    body: JSON.stringify({ data: bodyString})//or you can just use JSON Object {username:'weex'}
  }, function(ret) {
    if(!ret.ok){
      me.postResult = "request failed";
    }else{
      console.log('get:'+JSON.stringify(ret));
      me.postResult = JSON.stringify(ret.data);
    }
  },function(response){
    console.log('get in progress:'+response.length);
    me.postResult = "bytes received:"+response.length;
  });
世界只因有你
世界只因有你

全部回复(2)
扔个三星炸死你

在请求头中加入 "Content-Type": 'application/x-www-form-urlencoded;即可

女神的闺蜜爱上我

stream.fetch({

雷雷
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!