Man*_*ril 2 javascript angularjs angularjs-scope ionic-framework
.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>
Run Code Online (Sandbox Code Playgroud)
这是我的代码......我不知道如何解释但是当我在文本框中输入内容时它总是说未定义...
但$ scope.goaltitle ="something"正在处理.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);
};
});
Run Code Online (Sandbox Code Playgroud)
然后有goalTitle,Goal等等属性.
标记
<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>
Run Code Online (Sandbox Code Playgroud)
我不想再重写整个解释,所以在这里我引用类似的答案,我已经涵盖了所有详细信息.
| 归档时间: |
|
| 查看次数: |
703 次 |
| 最近记录: |