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]