0
我嘗試在按鍵輸入框中的某個輸入框中調用事件,但不知道如何傳遞輸入框的值。Ionic,Angular在按鍵事件中獲取輸入類型值
這就是我的做法,最終得到undefined
。
controller.js
$scope.bySearch = function(descr){
var xhr = $http({
method: 'post',
url: 'http://mywebsite.com/api/lists.php?descr='+descr
});
xhr.success(function(data){
$scope.data = data.data;
});
$ionicScrollDelegate.scrollTop();
console.log(descr);
}
sample.html
<label class="item item-input">
<i class="icon ion-search placeholder-icon"></i>
<input type="text" ng-model="dash.search" placeholder="Search" ng-keypress="bySearch(dash.search)">
</label>
什麼是將數據傳遞到角的正確方法?