IonicPopup我不能从ng-model

时间:2016-10-19 15:06:52

标签: data-binding ionicpopup

如果我错了,我是新来的。我想用ng-model从输入中获取名称数据,但我不能在onTap:函数中获取数据。我试图提醒$ scope.name,但它是空的无法工作,然后我尝试$ scope.name =“”在init处空,但当用户写下他的名字时它不会改变。我怎么能得到这个名字。谢谢你。

`$ scope.data = {

      model: "Choose",
      availableOptions: [
        {id: '1', name: 'dummyText1'},
        {id: '2', name: 'dummyText2'},
        {id: '3', name: 'dummyText3'}
      ] 
    };`
var myPopup = $ionicPopup.show({
      template:

      '<div class="list list-inset">' +
      '</label><label class="item item-input"><i class="icon ion-person placeholder-icon"></i>' +
      '<input  type="text" placeholder="Your name.." ng-model="name"></label>' +
      '</div>' ,

      title: 'Profile',
      scope: $scope,
      buttons: [
        { text: 'Cancel' },
        {
          text: '<b>Save</b>',
          type: 'button-positive',
          onTap: function(e) {
            if ($scope.name != null) {

              alert($scope.name);
              e.preventDefault();
            } else {
                alert($scope.name);

            }
          }
        }
      ]
    });

here is the popup screenshot 再次感谢您

1 个答案:

答案 0 :(得分:0)

我想通过添加ng-change =“foo(data)”来输入,现在我可以在范围内使用这些数据了。 谢谢。