离子框架:$scope在简单警报中未定义

Ionic Framework: $scope is undefined in simple alert

本文关键字:简单 未定义 scope 框架      更新时间:2023-09-26
.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 = "something" 正在 .controller((;

简答题

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

理想情况下,在定义视图模型时遵循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>

不想再次重写整个解释,所以在这里我引用类似的答案,我已经涵盖了所有详细信息。

对于 html

<input type="text" placeholder="#Title" ng-model="foo.goaltitle">

.JS:

$scope.foo = {{
    goaltitle : ''
}}