创建一个模板,我在一些HTML元素中包含一些Angular代码:

<button id="btnMainMenu" class="button button-icon fa fa-chevron-left header-icon"
        ng-if="(!CoursesVm.showcheckboxes || (CoursesVm.tabSelected == 'current') )"
...

我想调试ng-if条件以检查CoursesVm对象的值。例如,我将如何在Chrome中执行此操作?

最佳答案

对于寻找Angular(2+)的人,请使用json管道

例如:

 <span>{{ CoursesVm | json }}</span>
 <textarea>{{ CoursesVm | json }}</textarea>

09-12 08:27