2

JSON呼び出しからデータを取得しようとしているGoogleAppScriptがあります:

 var ajaxError = function(){
  $loadingItem.text('Could not load examples :(');
};

// dynamically load sites using Masonry from Zootool
$.getJSON('http://zootool.com/api/users/items/?username=desandro' +
    '&apikey=8b604e5d4841c2cd976241dd90d319d7' +
    '&tag=bestofmasonry&callback=?')
  .error( ajaxError() )
  .success(function( data ){...

基本的に、このJQueryプラグインの例http://masonry.desandro.com/ をファイルからHtmlを返すGoogleAppsスクリプトに実装しようとしています。

このジェイソンコールはエラーになります...しかし、なぜですか?何が悪いのかどこでわかりますか?Javascriptコンソールはエラーを表示していません。URLは機能します:http://zootool.com/api/users/items/ ?username = desandro&apikey = 8b604e5d4841c2cd976241dd90d319d7&tag = bestofmasonry&callback = ?

4

0 に答える 0