console.log(“lame”,$ scope.selectedId);当ng-change触发时仍然显示2 ...但是我视图中的{{selectedId}}更新为从下拉列表中选择的正确ID。就好像ng-change在ng-model更新之前一直在激活。
我的控制器
{{selectedId}}
<select ng-model="selectedId" ng-change="getResource()" type="text" class="form-control"
ng-options="id as id for id in idList">
</select>
标记
run_t = timeit.default_timer()
test_find_all_vertices_method_a()
print(timeit.default_timer() - run_t)
run_t = timeit.default_timer()
test_find_all_vertices_method_b()
print(timeit.default_timer() - run_t)
我正在使用角度1.2。有什么见解吗?