在Rails 3应用程序中使用CoffeeScript我有一个简单的ajax调用:
$(document).ready ->
fetchProfile = (profile_id) ->
fetchingProfile = null
if fetchingProfile
fetchingProfile.abort()
fetchingProfile = $.ajax
type: "GET"
dataType: "json"
url: "/api/profiles/" + profile_id
cache: false
timeout: 8000
beforeSend: ->
$("#loading-div").show()
complete: ->
$("#loading-div").hide()
$("#info-box").show()
success: (result) ->
$("span#name").text(result.name)
$("span#position").text(result.position)
$("span#number").text("#" + result.number)
$("span#experience").text(result.experience)
$("span#nationality").text(result.nationality)
$("span#height").text(result.height_feet + "' " + result.height_inches + "\"")
$("span#age").text(result.age)
$("span#weight").text(result.weight + "lbs")
$("span#favteam").text(result.favourite_nfl_team)
$("#photo-wrapper > img}").attr("src", result.photo.player.url)
error: (result) ->
if (result.statusText != "abort")
$("#error").show()
$("a#fancybox-link").click ->
$("a.profile-link").removeClass("selected")
$(@).addClass("selected")
fetchProfile($(@).data("profile"))
$("a#error-link").click (e) ->
e.preventDefault
fetchProfile($("a.selected").data("profile"), $("a.selected").data("user"))
此调用在Chrome和Safari中运行良好,但不适用于上述浏览器。
我尝试在完整的函数中添加一个警报,但在FF,IE或Opera中根本没有调用该函数。
任何想法??
答案 0 :(得分:0)
几个月之后重新审视这一点,因为它不是高优先级。
原来这是一个简单的拼写错误。卫生署!
这一行中的}
$("#photo-wrapper > img}").attr("src", result.photo.player.url)
我认为chrome比firefox更宽容。