- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个小型对话框 Controller ,它接受一个问题、一组答案并标记正确答案的索引。我需要使用户能够添加多个问题,并将它们存储在一个数组中。
一切正常,直到我尝试将包含问题详细信息的 JSON 推送到我之前创建的数组中。尝试推送时,JS 会抛出错误:无法读取未定义的属性“push”
。我读过一些关于如何在 Angular 中将元素/值推送到数组的线程,但似乎没有人遇到完全相同的问题。
这是我的代码:
function TestController($mdDialog, $scope, $mdSidenav, $mdBottomSheet, $timeout, $log) {
$scope.questionSet = [];
$scope.question = {
text: null,
answers: [],
correctIndex: -1
};
$scope.clickPoP = function(ev) {
// Appending dialog to document.body to cover sidenav in docs app
// Modal dialogs should fully cover application
// to prevent interaction outside of dialog
var parentEl = angular.element(document.body);
$mdDialog.show({
parent: parentEl,
targetEvent: ev,
templateUrl: "edit-word-dialog.tmpl.html",
locals: {
items: $scope.question
},
controller: DialogController
});
function DialogController($scope, $mdDialog) {
$scope.cancel = function() {
$mdDialog.hide();
}
$scope.addQuestion = function(nextQuestion) {
if (nextQuestion === true) {
console.log($scope.question);
$scope.questionSet.push($scope.question);
console.log('added question - clearing object - waiting for next input');
} else {
console.log($scope.questionSet);
console.log('added question - closing dialog box');
$mdDialog.hide();
}
}
$scope.setAnswer = function(index) {
$scope.question.correctIndex = index;
console.log(index);
}
}
};
}
如您所见,questionSet
应该保存问题,并在 Controller 启动时定义和初始化。
然后在 addQuestion()
函数中,我尝试将内部包含所有正确数据的 JSON 对象推送到 questionSet
中,这就是错误所在抛出。
我已经检查了所有数据、所有数据绑定(bind),一切都是正确的,只是不会将 JSON 推送到数组中。请注意,我宁愿避免附加到数组,以使其更易于管理。另请注意,我对 Angular 还很陌生。
感谢您的所有帮助,并对冗长的阅读表示歉意。
这是对话框的代码,以防错误出现:
<md-dialog class="email-dialog" flex="80" flex-sm="100">
<md-toolbar class="toolbar-default" md-theme="{{triSkin.elements.toolbar}}" palette-background="myPurple:500">
<div class="md-toolbar-tools">
<h2>
<span>Quiz</span>
</h2>
<span flex></span>
</div>
</md-toolbar>
<md-divider></md-divider>
<md-dialog-content class="sticky-container">
<div>
<md-content>
<md-input-container>
<label for="question-text">Enter Question</label>
<input type="text" id="quiz-question" label="quiz-question" name="quiz-question" ng-model="question.text">
</md-input-container>
<div style="float: right; width: 10%">
<md-radio-group>
<md-radio-button value="0" aria-label="ans0" ng-click="setAnswer(0)"></md-radio-button>
<br/>
<br/>
<md-radio-button value="1" aria-label="ans1" ng-click="setAnswer(1)"></md-radio-button>
<br/>
<br/>
<md-radio-button value="2" aria-label="ans2" ng-click="setAnswer(2)"></md-radio-button>
<br/>
<br/>
<md-radio-button value="3" aria-label="ans3" ng-click="setAnswer(3)"></md-radio-button>
</md-radio-group>
</div>
<div style="float: right; width: 80%;">
<md-input-container>
<label for="answer-one">Enter answer</label>
<input type="text" id="quiz-answer-one" label="quiz-answer-one" name="quiz-answer-one" ng-model="question.answers[0]">
</md-input-container>
<md-input-container>
<label for="answer-two">Enter answer</label>
<input type="text" id="quiz-answer-two" label="quiz-answer-two" name="quiz-answer-two" ng-model="question.answers[1]">
</md-input-container>
<md-input-container>
<label for="answer-three">Enter answer</label>
<input type="text" id="quiz-answer-three" label="quiz-answer-three" name="quiz-answer-three" ng-model="question.answers[2]">
</md-input-container>
<md-input-container>
<label for="answer-four">Enter answer</label>
<input type="text" id="quiz-answer-four" label="quiz-answer-four" name="quiz-answer-four" ng-model="question.answers[3]">
</md-input-container>
</div>
<div style="float:left;">
<md-button class="md-primary" aria-label="AddQuestion" ng-click="addQuestion(true)">Add Question</md-button>
<md-button class="md-secondary" aria-label="Save" ng-click="addQuestion(false)">Save</md-button>
</div>
</md-content>
</div>
</md-dialog-content>
<div class="md-actions" layout="row">
<span flex></span>
<md-button class="md-primary" aria-label="Close" ng-click="cancel()">
Close
</md-button>
</div>
最佳答案
您在父 Controller 中定义 $scope.questionSet,而不是在对话框 Controller 中。
MdDialog 默认使用隔离范围。您可以通过在 TestController 中的 $mdDialog 调用中传递 range: $scope 来使用父 Controller 作用域。
关于javascript - AngularJS Controller 内的数组未初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38293805/
我是 Spring 新手,这就是我想要做的事情: 我正在使用一个基于 Maven 的库,它有自己的 Spring 上下文和 Autowiring 字段。 它的bean配置文件是src/test/res
我在我的测试脚本中有以下列表初始化: newSequenceCore=["ls", "ns", "*", "cm", "*", "ov", "ov", "ov", "ov", "kd"] (代表要在控
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Class construction with initial values 当我查看 http://en.
我得到了成员变量“objectCount”的限定错误。编译器还返回“ISO C++ 禁止非常量静态成员的类内初始化”。这是主类: #include #include "Tree.h" using n
我有如下所示的a.h class A { public: void doSomething()=0; }; 然后我有如下所示的b.h #include "a.h" class b: publi
我需要解析 Firebase DataSnapshot (一个 JSON 对象)转换成一个数据类,其属性包括 enum 和 list。所以我更喜欢通过传递 DataSnapshot 来手动解析它进入二
我使用 JQuery 一段时间了,我总是使用以下代码来初始化我的 javascript: $(document).ready( function() { // Initalisation logic
这里是 Objective-C 菜鸟。 为什么会这样: NSString *myString = [NSString alloc]; [myString initWithFormat:@"%f", s
我无法让核心数据支持的 NSArrayController 在我的代码中正常工作。下面是我的代码: pageArrayController = [[NSArrayController alloc] i
我对这一切都很陌生,并且无法将其安装到我的后端代码中。它去哪里?在我的页脚下面有我所有的 JS? 比如,这是什么意思: Popup initialization code should be exec
这可能是一个简单的问题,但是嘿,我是初学者。 所以我创建了一个程序来计算一些东西,它目前正在控制台中运行。我决定向其中添加一个用户界面,因此我使用 NetBeans IDE 中的内置功能创建了一个 J
我有 2 个 Controller ,TEST1Controller 和 TEST2Controller 在TEST2Controller中,我有一个initialize()函数设置属性值。 如果我尝
据我所知, dependentObservable 在声明时会进行计算。但如果某些值尚不存在怎么办? 例如: var viewModel ={}; var dependentObservable1 =
我正在阅读 POODR 这本书,它使用旧语法进行默认值初始化。我想用新语法实现相同的功能。 class Gear attr_reader :chainring, :cog, :wheel de
我按照 polymer 教程的说明进行操作: https://www.polymer-project.org/3.0/start/install-3-0 (我跳过了可选部分) 但是,在我执行命令“po
很抱歉问到一个非常新手的Kotlin问题,但是我正在努力理解与构造函数和初始化有关的一些东西。 我有这个类和构造函数: class TestCaseBuilder constructor(
假设我们有一个包含 30 列和 30 行的网格。 生命游戏规则简而言之: 一个小区有八个相邻小区 当一个细胞拥有三个存活的相邻细胞时,该细胞就会存活 如果一个细胞恰好有两个或三个活的相邻细胞,那么它就
我是 MQTT 和 Android 开放附件“AOA” 的新手。在阅读教程时,我意识到,在尝试写入 ByteArrayOutputStream 类型的变量之前,应该写入 0 或 0x00首先到该变量。
我有 2 个 Controller ,TEST1Controller 和 TEST2Controller 在TEST2Controller中,我有一个initialize()函数设置属性值。 如果我尝
我有一个inotify /内核问题。我正在使用“inotify” Python项目进行观察,但是,我的问题仍然是固有的关于inotify内核实现的核心。 Python inotify项目处理递归ino
我是一名优秀的程序员,十分优秀!