How to inspect Ember.js objects in the console?

后端 未结 4 898
面向向阳花
面向向阳花 2021-02-03 10:01

Is there any way to get at what an Ember.js object really contains in the JavaScript console. If you do console.log(this), you will get almost the same data structu

4条回答
  •  别跟我提以往
    2021-02-03 10:47

    If you're trying to inspect an Ember Data record, you can call the serialize method on it from your console, this will give you the object as your external data source expects.

提交回复
热议问题