我有一个创建json的JavaScript插件。我在按钮单击的参数中得到了这一点。

最初,该插件创建



{"fields":[{"label":"Test","field_type":"dropdown","required":true,"field_options":{"options":[{"label":"value1","checked":false},{"label":"value2","checked":false}],"include_blank_option":false},"cid":"c2"}]}





但是当我以后得到参数时

{\"fields\":{\"0\":{\"label\":\"Test\",\"field_type\":\"dropdown\",\"required\":\"true\",\"field_options\":{\"options\":{\"0\":{\"label\":\"value1\",\"checked\":\"false\"},\"1\":{\"label\":\"value2\",\"checked\":\"false\"}},\"include_blank_option\":\"false\"}


我没有使用表格,所以无法将响应设置为json ..我该怎么做才能在参数中获取json?插件创建json对象和数组,而在params中,我得到对象。我想问题是无法将内容类型设置为json。

最佳答案

在ajax中使用以下代码:

数据:有效载荷,

07-26 09:35