如何从backgrid模板访问多维JSON数组中的值

时间:2015-03-24 11:36:21

标签: json backbone.js laravel-4 backgrid

我试图从laravel json响应Backgrid模板获取json值

我的laravel json回复是

 return Response::json(
    array(
        'items'=> $articles->toArray()
    ));

它响应像这些

的json数组
{"items":[{"id":30,"title":"Tester","body":"tesrter","user_id":566,"user_nickname_id":0,"category_id":1,"community_id":0,"ref_link":"face.com","status":3,"points":0,"editor_id":566,"created_at":"2015-03-21 15:53:43","updated_at":"2015-03-21 09:23:43","category":{"id":1,"name":"Cupcake wrappers","description":"","created_to":"2015-02-27 13:53:15","updated_to":"0000-00-00 00:00:00"}}]}

我的背景细胞是

var CateoryType = Backgrid.Cell.extend({
  template: _.template('<%=category.name%>'),
  render: function () {
    this.$el.html(this.template( this.model.toJSON() ));
    this.delegateEvents();
    return this;
  }});

但我无法从json响应中获取类别的名称。 我如何从我的Backgrid Cell获取分类名称或以任何其他方式访问它?

1 个答案:

答案 0 :(得分:0)

问题是你没有从你的laravel返回一个精确的集合,你可以使用backbone或laravel(最佳)

而是只返回

echo json_encode($articles->toArray());

使用主干parse方法:

在你的收藏中使用

parse : function(response){
   return response.items
}