您好我想将 json 对象转换为特殊字符转义的字符串。
以下是示例
{
"xtype": "window",
"height": 250,
"width": 400,
"bodyPadding": "20 0 0 20",
"title": "Configuration",
"modal": true,
"items": [
{
"xtype": "textfield",
"fieldLabel": "Deploy Path"
},
{
"xtype": "textfield",
"fieldLabel": "Save Path"
},
{
"xtype": "button",
"margin": "20 0 0 100",
"text": "Save"
}
]
}
以上反对
{\n \"xtype\": \"window\",\n \"height\": 250,\n \"width\": 400,\n \"bodyPadding\": \"20 0 0 20\",\n \"title\": \"Configuration\",\n \"modal\": true,\n \"items\": [\n {\n \"xtype\": \"textfield\",\n \"fieldLabel\": \"Deploy Path\"\n },\n {\n \"xtype\": \"textfield\",\n \"fieldLabel\": \"Save Path\"\n },\n {\n \"xtype\": \"button\",\n \"margin\": \"20 0 0 100\",\n \"text\": \"Save\"\n }\n ]\n}
有人可以帮我吗?
提前致谢。
你好,
我的 JSON 包含一些添加的插件,因此 stringify 函数不起作用。例如
plugins: [
Ext.create('Ext.grid.plugin.CellEditing', {
ptype: 'cellediting'
})
]
这是事情对我不起作用的地方,我希望有人可以在这里帮助我。
提前致谢。