我有一个如下创建的对象
var test=[];
test.car=1
test.bike=2
test.cycle=3
结果:[汽车:1,自行车:2,自行车周期:3]
我有一个期望的控制器
public ActionResult insertTransport(transportModal test)
当我写data:JSON.stringify(test)
时
来自data:JSON.stringify(test)
的值正像[]
一样,我需要做什么来对对象测试进行字符串化?