楼主:
kiey (炼)
2019-08-25 14:24:52Vue :
let oParams = {
sTest : this.sTest //test test
aTest: this.aTest //[1,2,3,4]
};
this.axios.post('/user/postUser', oParams, oResponse => {
...
});
Server :
sTest = 'test test' 没问题
可是后端收到的
aTest 却是 string "1,2,3,4"
想请问各位先进大大们知道原因吗??