我有一个下拉列表,想知道该下拉列表的“值”是什么
<div>
<select ng-model="lastItem" ng-options="cc.congressLongName for cc in ccList"></select>
</div>
但是因为当我查看源代码时,我看到的页面都是
<div data-ng-view=""></div>
使用 angular 时如何查看我的源代码?
编辑:从 angularJS 视图中查看输出的唯一方法似乎是使用开发人员工具;$('body').html()。我尝试了所有其他方法,但没有显示真正的 HTML。