如何自定义参数Json这样的对象,在angular2 http post中

时间:2017-03-13 10:45:30

标签: javascript json http

JSON对象

let params = {
  sportType:1,
  attrs:[
    {"attr":2,"lableId":5},
    {"attr":2,"lableId":6}
  ],
  ballAge:2
};

使用Jquery param()后,序列化代码:

enter image description here

但后端界面必须接受:

"sportType=1&attrs[0].lableId=6&attrs[0].attr=2&ballAge=2"

所以,我不知道这个问题,如果每个人都有问题的解决方案,谢谢!!

0 个答案:

没有答案