0

ページ上のwbotelhos/raty.jsプラグインにカーソルを合わせると、星が点滅するときにサーバーからstar-on.pngとstar-off.pngが繰り返しフェッチされます。画像のローカルクライアントキャッシュを使用する方法はありますか?Chromeでテストしています。次のBackbone.Viewレンダリングコードを使用して、プラグインをItem要素に挿入します。

render: function(manage) {
  this.collection.each(function(user) {
    this.insertView("ul", new User.Views.Item({
      model: user
    }));
  }, this);

  return manage(this).render().then(function(el) {
    // Only re-focus if invalid
    this.$("input.invalid").focus();
    this.$(".raty-test").raty();
  });
}
4

1 に答える 1

0

これを解決するために、私はgithubを書きました:wbotelhos/ratyからフォークされたcharlesjshort/ratyは、画像ソースを設定するためのコードを、画像をlocalStorage配列のオブジェクトに設定するsetSource関数に置き換えます。github: doomhz/jQuery-Image-Cache を使用して、画像を localStorage 配列にプリロードします。

于 2012-07-20T17:35:15.803 に答える