ionicPopup 无法获取输入值
ionicPopup cannot get input value
我按照 $ionicPopup.show here 的示例进行操作,但失败了。
angular.module('main').directive('dtDiscount', function($ionicPopup) {
return {
require: 'ngModel',
scope: {
operators: '=operators',
toggle: '=toggle',
},
templateUrl: 'templates/components/discount.html',
link: function ($scope, $element, $attrs, ctrl) {
$scope.customeDiscount = 0;
$scope.setCustomDiscount = function(){
$ionicPopup.show({
title: 'Input Your Own Discount',
subTitle: 'XX %off',
template: '<input type="number" ng-model="customeDiscount"/>', // the preset value show 0, which is expected.
scope: $scope,
buttons: [{ text: 'Cancel' },{
text: '<b>Confirm</b>',
type: 'button-positive',
onTap: function(e) {
console.log($scope.customeDiscount); // 0
return $scope.customeDiscount;
}
}]
});
}
$scope.$watch('customeDiscount', function(value){
console.log(value);
});
}
}
})
无论我为 customeDiscount 输入任何值,它总是给我 0
输出,因此值 $scope.customeDiscount
无法更改。
谁能帮我找出问题所在?
//old $scope.customeDiscount = 0;
$scope.data = {};
$scope.setCustomDiscount = function(){
$ionicPopup.show({
title: 'Input Your Own Discount',
subTitle: 'XX %off',
template: '<input type="number" ng-model="data.customeDiscount"/>', // the preset value show 0, which is expected.
scope: $scope,
buttons: [{ text: 'Cancel' },{
text: '<b>Confirm</b>',
type: 'button-positive',
onTap: function(e) {
console.log($scope.data.customeDiscount); // 0
return $scope.data.customeDiscount;
}
}]
});
}
您是否尝试过使用对象而不是 2 个简单的值?
$scope.data= {}
然后使用
$scope.data.customeDiscount
我按照 $ionicPopup.show here 的示例进行操作,但失败了。
angular.module('main').directive('dtDiscount', function($ionicPopup) {
return {
require: 'ngModel',
scope: {
operators: '=operators',
toggle: '=toggle',
},
templateUrl: 'templates/components/discount.html',
link: function ($scope, $element, $attrs, ctrl) {
$scope.customeDiscount = 0;
$scope.setCustomDiscount = function(){
$ionicPopup.show({
title: 'Input Your Own Discount',
subTitle: 'XX %off',
template: '<input type="number" ng-model="customeDiscount"/>', // the preset value show 0, which is expected.
scope: $scope,
buttons: [{ text: 'Cancel' },{
text: '<b>Confirm</b>',
type: 'button-positive',
onTap: function(e) {
console.log($scope.customeDiscount); // 0
return $scope.customeDiscount;
}
}]
});
}
$scope.$watch('customeDiscount', function(value){
console.log(value);
});
}
}
})
无论我为 customeDiscount 输入任何值,它总是给我 0
输出,因此值 $scope.customeDiscount
无法更改。
谁能帮我找出问题所在?
//old $scope.customeDiscount = 0;
$scope.data = {};
$scope.setCustomDiscount = function(){
$ionicPopup.show({
title: 'Input Your Own Discount',
subTitle: 'XX %off',
template: '<input type="number" ng-model="data.customeDiscount"/>', // the preset value show 0, which is expected.
scope: $scope,
buttons: [{ text: 'Cancel' },{
text: '<b>Confirm</b>',
type: 'button-positive',
onTap: function(e) {
console.log($scope.data.customeDiscount); // 0
return $scope.data.customeDiscount;
}
}]
});
}
您是否尝试过使用对象而不是 2 个简单的值?
$scope.data= {}
然后使用
$scope.data.customeDiscount