我正在使用带有 JSON 的 EXTJS。我试图在 json 响应中返回一个对象,但它不起作用。我有以下内容:
{"success": true,
"results" : [ {
"type":{
"title":"example"
}
},{
"type":{
"subtitle":"example"
}
}
]}
在萤火虫它输出这个:
type "[object Object]"
这是因为数据模型吗?我不确定使用什么类型作为类型。
谢谢