Knockout没有使用我的数据

时间:2016-01-04 18:15:52

标签: javascript arrays json templates knockout.js

坚持使用javascipt的淘汰图书馆。 所以,我想实现简单的论坛。我有javascript文件,包含两个ajax请求,主题和帖子。我有html模板。

function dealModel() {
  var self = this;
  self.board = ko.observableArray([]);
  var res = [];

  $.getJSON("http://someaddress/threads", function(data) {
    $.each(data, function(i, thread) {
      var js = jQuery.parseJSON(thread);
      js.posts = ko.observableArray([]);
      var postres = []
      $.getJSON("http://someadress/posts/" + js.id, function(postdata) {
        $.each(postdata, function(idx, post){
          var jspost = jQuery.parseJSON(post);
          postres.push(jspost);
        })
      })

      js.posts(postres);
      res.push(js);
    })

    self.board(res);
  })
}
$(document).ready(function(){
  ko.applyBindings(new dealModel());
});
var testdata = [{text : "text 1"} , {text : "text2"}]

这是我的js代码。它完全适用于主题,但当我发布我的帖子时,我的可观察数组"帖子"已经空了。 为了测试我创建了测试数组" testdata" (下面),并传入我的可观察数组。而且,javascript工作得很好。 这是我的模板

<!DOCTYPE html>
<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/knockout/knockout-3.3.0.js"></script>

<script type="text/javascript" src="ajaxknockout.js"></script>
</head>
 <body>
    <div class='board'>
  <div class='threads' data-bind="foreach: board">

  <p data-bind="text: title"></p>

  <div  class= "posts" data-bind="foreach: $data.posts">

    <p data-bind="text: text"> </p>
    </div>
  </div>


</div>
 </body>>
</html>

所以,我认为我的帖子JSON有些不好。 在这里。

["{\"createTime\": \"Monday, 04. January 2016 05:53PM\",\"thread_id\": \"2\",\"text\": \"post 1\",\"id\": \"4\"}", "{\"createTime\": \"Monday, 04. January 2016 05:53PM\",\"thread_id\": \"2\",\"text\": \"post 2\",\"id\": \"5\"}", "{\"createTime\": \"Monday, 04. January 2016 05:53PM\",\"thread_id\": \"2\",\"text\": \"post 3\",\"id\": \"6\"}"]

所以,我有一个问题。我的代码有什么问题?为什么淘汰赛了解我的测试数据,但完全拒绝生产数据?

1 个答案:

答案 0 :(得分:1)

那是因为你的第一个json请求的这一部分:

js.posts(postres);

在第二个json请求的回调之前执行,你要在那里提取帖子。您必须更改它,以便在执行js.posts(postres);之前填充posts数组,例如:

$.getJSON("http://someadress/posts/" + js.id, function(postdata) {
    $.each(postdata, function(idx, post){
        var jspost = jQuery.parseJSON(post);
        postres.push(jspost);
    })
    js.posts(postres);
})