角度警报输入返回'undefined'

时间:2016-01-12 12:21:59

标签: angularjs ionic-framework ionic

我正在尝试在离子弹出窗口中打印输入值。但它在控制台中返回“undefined”而不是输入字段中输入的文本。我在没有$scope的情况下尝试但是没有工作。它可能有什么问题?您可以在下面看到我使用的代码。

function funcNew() {
        var myPopup = $ionicPopup.show({
            template: '<input type="text" ng-model="description">',
            title: 'Enter Description',
            subTitle: '',
            scope: $scope,
            buttons: [
                {
                    text: 'Cancel'
                },
                {
                    text: '<b>Yes</b>',
                    type: 'button-positive',
                    onTap: function (e) {
                        console.log($scope.description);

                    }
            }]
        });
    }

1 个答案:

答案 0 :(得分:2)

而不是description使用data.descriptionng-model中的console.log($scope.data.description)