我正在尝试从json url获取一组对象。
model: ->
url = 'http://localhost:3003/api/tasks'
Ember.$.getJSON(url).then (data) ->
data
如何调试数据以便查看某些区域的值?我试过拼接,但它抱怨说方法不存在。我尝试了数据[0]和其他东西,没有任何显示。如何调试该对象以查看它从URL中获取的内容?
答案 0 :(得分:1)
在现代浏览器中,您可以使用console.log
:
model: ->
url = 'http://localhost:3003/api/tasks'
console.log('Sending ajax request')
Ember.$.getJSON(url).then (data) ->
console.log('Received ajax request with', data)
您可以使用debugger
关键字来创建断点。并使用浏览器的开发工具检查对象。