数据双向绑定:
模型的数据可以绑定到视图中
视图的数据可以绑定到模型中
想要实现视图数据绑定到模型,必须要借助表单.
在表单中使用ng-model, 在input标签中绑定属性
ng-mode= "属性名称"
<body>
<div data-ng-app="" data-ng-init="quantity=1;price=5">
<h2>价格计算器</h2>
数量: <input type="number" ng-model="quantity">
价格: <input type="number" ng-model="price">
<p>总价: {{quantity * price}}</p>
</div>
</body>
<script src="js/angular.js"></script>
<script>
/* //1.创建模块
var app = angular.module('app', []);
//2.创建控制器
app.controller('xmgController', ['$scope', function ($scope) {
$scope.name = "";
}]);*/
//3.绑定模块 ng-app="app"
//4.绑定控制器 ng-controller="xmgController"
</script>