angularjs变量的三种表示方式
Posted zhz-8919
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs变量的三种表示方式相关的知识,希望对你有一定的参考价值。
1.在js中表示:
$scope.变量名,如:
$scope.searchEntity = ;
$scope.findPage = function (page, rows)
$http.post('../specification/findPage?page='+page+'&rows='+rows, $scope.searchEntity).success(function (response)
$scope.list = response.rows;
$scope.paginationConf.totalItems = response.total;
);
2.在html代码中表示普通文本:
变量名,如:
```
```
3.在html代码中表示函数形参:
函数名(变量名),如:
<td class="text-center">
<button type="button" class="btn bg-olive btn-xs" data-toggle="modal" data-target="#editModal" ng-click="update(item.id)">修改</button>
</td>
以上是关于angularjs变量的三种表示方式的主要内容,如果未能解决你的问题,请参考以下文章