通过索引从observableArray获取对象

时间:2013-01-05 17:17:07

标签: knockout.js

我正在设计一个带Knockoutjs的测验。我想一次只显示一个问题。我正在考虑一个全局计数var,每次回答问题时都会加1。但是,我似乎无法找到一种方法来获得当时只有一个问题。 我怎么能最好地接近这个?我是Knockoutjs的新手。我尝试了问题()[编号],但似乎没有用。

由于

JS

$(document).ready(function(){
function Answer(data) {
    this.answer = ko.observable(data.answer);
    this.correct = ko.observable(data.correct);
}

function Question(data){
    this.id = ko.observable(data.id);
    this.question = ko.observable(data.question);
    this.answers = ko.observableArray([]);
    var mappedAnswers = $.map(data.answers, function(item) {return new Answer(item) });
    this.answers(mappedAnswers);
}


function AnswerViewModel(){
    // Data
    var self = this;

    self.questions =  ko.observableArray([]);

    self.checkAnswer = function(item, event){
            if (item.juist() == true){
               $(event.currentTarget).css("background", "green");

            }else{
                $(event.currentTarget).css("background", "red");
            }
    }

    $.getJSON("../res/json/quiz.json", function(allData) {
        var mappedQuestions = $.map(allData.questions, function(item) {return new Question(item) });
        self.questions(mappedQuestions);
    });
}

ko.applyBindings(AnswerViewModel());
});

HTML

<h3 data-bind="questions()[1].question"></h3>
<ul class="list-container"  data-bind="foreach: questions()[1].answers">
    <li class="list-item">
         <a class="list-item-content" href="#" data-bind="text: answer, click:checkAnswer"></a>
    </li>
</ul>
<button>Next question</button>

JSON

{
"questions" :
[
    {
        "id": 1,
        "question": "This is the first question",
        "answers" :
        [
            {"answer": "q1a1", "correct": false},
            {"answer": "q1a2", "correct": false} ,
            {"answer": "q1a3", "correct": true},
            {"answer": "q1a4", "correct": false}
        ]
    },
    {
        "id": 2,
       "question": "This is the 2nd question",
        "answers" :
        [
            {"answer": "q2a1", "correct": false},
            {"answer": "q2a2", "correct": false} ,
            {"answer": "q2a3", "correct": false},
            {"answer": "q2a4", "correct": true}
        ]
    }
]

}

2 个答案:

答案 0 :(得分:8)

Jsfiddle很有趣所以我不能在那里发布代码,但它很简单:你几乎就在那里!这是一个小推动。

首先,除非必要,否则调用标记中的方法并不是一个好的做法,并且为函数提供参数可能意味着您可以使用observable。在这种情况下:

<div data-bind="foreach: filteredQuestions">
<ul class="list-container"  data-bind="foreach: answers">
    <li class="list-item">
         <a class="list-item-content" href="#" data-bind="text: answer"></a>
    </li>

</ul>
<button data-bind="click: $parent.nextQuestion">Next question</button>
</div>

正如您所看到的,在标记中我只是放置变量,而不是以filteredQuestions的形式调用它。到现在为止,你可能会问,“这个foreach有什么用?我只想展示一个问题,而不是所有问题。过滤后的东西是什么?”

这就是我正在做的事情:我没有显示原始问题数组,而是显示一个已过滤的数组,每当其中的任何可观察数据发生变化时都会更新。这是filteredQuestions的代码。

self.currentQuestionId = ko.observable("1");
self.filteredQuestions = ko.computed(function() {
    var currentQuestion = self.currentQuestionId();
    return ko.utils.arrayFilter(self.question(), function(question) {
        return question.id() == currentQuestion;
    });
});

如果你注意代码,我只返回一个只有一个问题的数组,其中Id与currentQuestionId变量设置的数组相同。这是一种方法,虽然有很多:其他好的方法有一个名为selectedQuestion的可观察值,这是第一个问题;然后在标记中使用数据绑定with:selectedQuestion。但是,让我们坚持这一点,你能猜出$parent.nextQuestion做了什么吗?

self.nextQuestion = function() {
    var currentQuestionId = self.currentQuestionId();
    self.currentQuestionId(currentQuestionId + 1);
}

首先,我们使用$parent关键字来浏览实际范围内的父级,因为question语句因为我们在子foreach中。这个功能因你的要求而起作用,但可能存在一些陷阱(我们在最后一个问题中做了什么?如果id没有在数字上增加怎么办?)。那时另一种方法可能更有用,在这种情况下,你会有这样的东西:

self.nextQuestion = function(question) {
    var index = self.questions().indexOf(question);
    self.selectedQuestion(self.questions()[index + 1]);
}

最后一种方法的美丽?好吧,backQuestion非常简单!

self.backQuestion = function(question) {
    var index = self.questions().indexOf(question);
    self.selectedQuestion(self.questions()[index - 1]);
}

(您显然需要检查IndexOutOfBounds类型错误)。在最后一种方法中,不要忘记,因为我们在foreach之类的上下文切换元素中,所以我们将当前问题作为参数接收。希望这会有所帮助。

答案 1 :(得分:1)

Here是一个有效的解决方案。

代码使用mapping插件来简化视图模型的创建 “questionIndex”和“currentQuestion”可观察量跟踪当前的问题。

function AnswerViewModel(){
  var self = this;
  ko.mapping.fromJS(data, {}, self);

  this.questionIndex = ko.observable(0);
  this.currentQuestion = ko.computed(function(){
     return self.questions()[self.questionIndex()];
  });

this.nextQuestion = function(){
  var questionIndex = self.questionIndex();
  if(self.questions().length - 1 > questionIndex){
    self.questionIndex(questionIndex + 1);
  }
};

this.prevQuestion = function(){
  var questionIndex = self.questionIndex();
  if(questionIndex > 0){
    self.questionIndex(questionIndex - 1);
  }
};

this.checkAnswer = function(item, event){
  $(event.currentTarget).css("background", item.correct() ? "green" : "red");
};  
}

标记:

<!-- ko with: currentQuestion -->
<h3 data-bind="text: question"></h3>
<ul class="list-container" data-bind="foreach: answers">
  <li class="list-item">
     <a class="list-item-content" href="#" data-bind="text: answer, click:$root.checkAnswer"></a>
</li>
</ul>
<!-- /ko -->

这里我使用虚拟元素<!-- ko --> <!-- /ko -->来引入所需的上下文。