我做了一個非常小的應用程序,但綁定不作爲模型對象。這怎麼可能?簡單的角度綁定
angular.module("simpleapp", [])
.controller("Controller", ['$scope', function($scope) {
$scope.sample = {};
$scope.sample.input = 4;
}]);
<body ng-app = "simpleapp" >
<input ng-model="sample.input" type="text" value="text" />
<div ng-controller = "Controller"><p>input "{{sample.input}}"</p></div>
</body>
在這裏你去[PLUNKR(http://plnkr.co/edit/qZE7FqRKp1pndQVvtkjx?p=preview) –
@ user127520你沒有得到你需要的東西從我的答案? – Prasad
嗨,不,它不同。 – user127520