0

コレクション内の instagram の URL から json データを読み取り、ビュー内のコレクション データを取得していますが、応答がありません。どうしたの?

モデル:

        define([
          'underscore',
          'backbone'
        ], function(_, Backbone) {var TopListModel = Backbone.Model.extend(return TopListModel;});

コレクション:

define([
  'jquery',
  'underscore',
  'backbone',
  'models/topList/topListModel'
], function($, _, Backbone, TopListModel){
  var TopListCollection = Backbone.Collection.extend({
  model: TopListModel,
  url: 'https://api.instagram.com/v1/tags/'+hashtag+'/media/recentaccess_token='+access_code,
  });

 return TopListCollection;
});

意見:

define([
  'jquery',
  'underscore',
  'backbone',
  'text!templates/sidebar/topList.html',
  'collections/topList/TopListCollection',
  //'text!templates/home/homeTemplate.html'
], function($, _, Backbone, topList, TopListCollection){

  var TopListView = Backbone.View.extend({
    el: $("#sidebar"),
    initialize: function(){
      _.bindAll(this, 'render');

      var topListCollection = new TopListCollection();
      topListCollection.fetch({success: function(collection, data){            
        console.log(data);
      }});
      //this.render();
    },
4

1 に答える 1

0
define([
      'underscore',
      'backbone'
    ], function(_, Backbone) {var TopListModel = Backbone.Model.extend(return TopListModel;});

おそらく次のようになります。

define([
      'underscore',
      'backbone'
    ], function(_, Backbone) {var TopListModel = Backbone.Model; return TopListModel;});

さらに良いことに、モデルで特別なことをしていない限り、実際にモデルを定義する必要はありません。バックボーンは、応答に基づいてモデルを作成するだけです。

于 2013-01-09T14:16:58.043 に答える