0

在 Chrome、FF、Safari 等中运行良好。

JSON响应似乎很好......我猜它与我在我的代码中正在做或不做的事情有关:

var getPhotos = function() {
  $.ajax({
    url: 'https://api.parse.com/1/classes/Photo',
    headers: {
      'X-Parse-Application-Id': config.parseAppId,
      'X-Parse-REST-API-Key': config.parseRestKey
    },
    type: 'GET',
    dataType: 'json',
    data: {
      'where': '{"event": "' + <%= @event.id %> + '"}',
      'order': '-createdAt',
      'limit': '12'
    },
    success: function (data) {
      $('#community-gallery').children().remove();
      data.results.forEach(function (photo) {
        $('#community-gallery').append($('<a href="'+photo.file.url+'" rel="gallery"><img src="'+photo.file.url+'" width="130" style="padding: 0px 15px 15px 0;" /></a>'));
      })
    },
    error: function () {
      alert('Problem reading photos');
    }
  });
};
4

3 回答 3

0

当它应该只是 html 内容时,你也在$你的调用中使用它。append()

于 2012-08-30T14:06:26.303 回答
0

您正在使用仅在 IE9+ 中支持的 ArrayforEach方法data.results.forEach,请参阅底部的兼容性表:

https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/forEach

于 2012-08-30T14:05:11.983 回答
0

cache: false, 根据我的经验,在 IE 中也很重要

于 2012-08-30T14:29:19.400 回答