angularjs中的常遇问题整理

1.页面中默认图片的显示

   {{img || "/upload/img.png"}}

2.接口中的数据没有及时读取到,$apply

$.post(
url, {},
function(data){
$scope.$apply(function() {
$scope.shop_list = data.data;
});
},'json'
);

3..页面中默认时间的显示

{{now|date:'yyyy-MM-dd hh:mm:ss'}}

4.ng-checked用法:ng-checked为true为选中,false为未选中,绑定值还需ng-model

   eg:<input type="checkbox" id="markcheckbox11" ng-model="data.is_anonymity" ng-checked="data.is_anonymity" >
posted @ 2020-03-18 11:28  北往星辰  阅读(176)  评论(0编辑  收藏  举报