我正在尝试使用Web服务器将JSON对象传递给Enyo。 从Enyo中的服务加载的文件:
{ "Comments" : ["NewComment 1", "NewComment 2", "NewComment 3" ]}
以下服务回调会生成错误
gotComments: function(inSender, inResponse) {
this.serverReply = InResponse; // error uncaught reference error: inResponse not defined
this.$.list.render();
},
当我在我的chrome调试器上单击inReply时,它会显示
Object:
Comments: Array[3]
如果监视窗口显示为
,怎么说它没有定义Object:
Comments: Array[3]
答案 0 :(得分:2)
您问题中的代码混合了InResponse
(大写I
)和inResponse
(小写i
)。假设这是您的真实代码的样子,请更改
this.serverReply = InResponse;
到
this.serverReply = inResponse;