I’m trying to pass a JSON object to Enyo using a web server. The file being loaded from the service in Enyo:

{ "Comments" : ["NewComment 1", "NewComment 2", "NewComment 3"  ]}

The following callback for the service generates an error saying

gotComments: function(inSender, inResponse) {
    this.serverReply = InResponse; // error  uncaught reference error: inResponse not defined
     this.$.list.render();
},

When I click on inReply on my chrome debugger it says

Object:
Comments: Array[3]

How can it say it is not define, if the watch window shows it as

Object:
Comments: Array[3]
link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The code in your question mixes InResponse (capital I) and inResponse (lowercase i). Assuming this is what your real code looks like, change

this.serverReply = InResponse;

to

this.serverReply = inResponse;
link|improve this answer
Ahhhh how could I have mist that, thank you – Ted pottel Jan 5 at 13:57
1  
Next time, run your code through JSLint. It'll catch this sort of error, no need to ask SO. – Matt Ball Jan 5 at 14:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.