.controller('newGoalCtrl', function($scope, $ionicPopup) {
    $scope.addNewGoal = function() {
        alert($scope.goaltitle);
    };
});

<ion-pane view-title="goal">
   <ion-header-bar class="bar-positive">
      <div class="buttons">
          <a nav-transition="android" class="button button-icon icon ion-arrow-left-b" ng-click="" href="#/index"></a>
      </div>
      <h1 class="title">Add New Goal</h1>
    </ion-header-bar>


    <ion-content class="padding" scroll="false" >
        <div class="list">
            <label class="item item-input">
                <input type="text" placeholder="#Title" ng-model="goaltitle">
            </label>
            <label class="item item-input">
                <span class="hashtag-title">#{{hashtagname}}</span>
            </label>
            <label class="item item-input">
              <textarea placeholder="Goal"></textarea>
            </label>
        </div>
    </ion-content>


    <ion-tabs class="tabs-icon-top tabs-color-active-positive">
        <button class="button button-positive button-bar no-round-corner" ng-click="addNewGoal()">Add Goal</button>
    </ion-tabs>
</ion-pane>


这是我的代码...我不知道如何解释,但是当我在文本框中输入内容时,它总是说未定义...

但是$ scope.goaltitle =“东西”正在.controller();上工作。 ...

最佳答案

简短答案


  此问题的根本原因是,ion-content确实创建了一个原型继承的子级
  作用域,这就是为什么控制器作用域的goaltitle(原始类型)与您在goaltitle上使用的ng-model不同的原因


理想的做法是在定义视图模型时遵循dot rule。这样,原型继承规则将遵循作用域层次结构。

您应该定义对象,然后在其中分配所有ng-model属性。

控制者

.controller('newGoalCtrl', function($scope, $ionicPopup) {
    $scope.model = {};
    $scope.addNewGoal = function() {
        alert($scope.model.goaltitle);
    };
});


然后在其中包含goalTitleGoal等属性。

标记

<ion-content class="padding" scroll="false" >
    <div class="list">
        <label class="item item-input">
            <input type="text" placeholder="#Title" ng-model="model.goaltitle">
        </label>
        <label class="item item-input">
            <span class="hashtag-title">#{{hashtagname}}</span>
        </label>
        <label class="item item-input">
          <textarea placeholder="Goal" ng-model="model.Goal"></textarea>
        </label>
    </div>
</ion-content>


我不想再次重写整个说明,因此在这里我指的是similar answer,其中涵盖了所有详细信息。

10-06 01:04