我是Angular的新手,嘗試構建離子應用程序。我在屏幕上有兩個字段,我想要實現以下內容。角度離子數據綁定問題
- 當用戶在
price
字段中輸入一些東西,我要作相應的更新weight
場。 - 當用戶在
weight
字段中輸入內容時,我想更新price
字段。
這是我的代碼。
<div class="col col-50">
<div class="card">
<label class="item item-input">
<input ng-model="sale_item_weight" value="{{ sale_item_weight }}" ng-change="syncWithItemPrice()" type="number" placeholder="Enter Weight">
</label>
</div>
</div>
<div class="col col-50">
<div class="card">
<label class="item item-input">
<input ng-model="sale_item_price" value="{{ sale_item_price }}" ng-change="syncWithItemWeight()" type="number" placeholder="Enter Price">
</label>
</div>
</div>
,並在我的控制器我有以下方法:
$scope.syncWithItemWeight = function() {
var itemPrice = $scope.sale_item_price;
$scope.sale_item_weight = parseInt(itemPrice) * 2;
}
$scope.syncWithItemPrice = function() {
var itemWeight = $scope.sale_item_weight;
$scope.sale_item_price = parseInt(itemWeight)/2;
}
當我改變一個領域的另一個沒有更新。功能正在調用,我已經通過添加alert
來確保它們。
它似乎是爲我工作正常,你可以發表你的整個代碼。它最可能是一個錯字。看到這[鏈接](https://plnkr.co/edit/1WUamNKfg8IfRufwNs5r?p=info) –