javascript - weex POST请求web端body服务器获取不到参数
问题描述
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; });
问题解答
回答1:在请求头中加入 'Content-Type': ’application/x-www-form-urlencoded;即可
回答2:stream.fetch({
method: ’POST’, url: POST_URL, type:’json’, body:JSON.stringify({username:’weex’})//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; });
相关文章:
1. javascript - 修改表单多选项时和后台同事配合的问题。2. dockerfile - [docker build image失败- npm install]3. docker绑定了nginx端口 外部访问不到4. angular.js使用$resource服务把数据存入mongodb的问题。5. macos - mac下docker如何设置代理6. 关于docker下的nginx压力测试7. angular.js - angular ui bootstrap 中文显示问题8. javascript - 怎么实现点击表格中的某一行然后就在表单处出现表格中的对应的属性值啊9. redis - 究竟是选择微信小程序自带的统计工具还是自己开发一个数据统计的代码?10. dockerfile - 我用docker build的时候出现下边问题 麻烦帮我看一下

网公网安备