Hi, Trying to learn, so this is probably really basic but here we go. How do I drill down in the result, to extract specific information.
In this exaple I have a REST query from Yahoo https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quote%20where%20symbol%20%3D%20%22AAPL%22&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback= I can get the value for "created" with a function like this. this.getCreatedTime = function() { return this.data && this.data.query ? this.data.query.created : null ; } But how do I extract info deeper down, lets say I want the value for "Volume" (query > results > quote > Volume). Thanks II -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
