使用coffeescript从jquery回调调用方法

时间:2013-01-17 07:48:21

标签: javascript jquery coffeescript

在coffeescript中,我想从jquery回调中调用一个类方法,如何访问类的范围? this.loadImage(当前索引)不起作用

class ImageCarousel    

    currentIndex = 0
    jsonPath = "json/images.json"
    images = null  


    constructor: () ->

       this.loadJson()


loadJson: () ->

    $.ajax jsonPath,
        success  : (data, status, xhr) ->
            console.log("yea "+data)
            this.images = data.images
            this.loadImage(currentIndex)
        error    : (xhr, status, err) ->
            console.log("nah "+err)
        complete : (xhr, status) ->
            console.log("comp")




loadImage:(@index) ->

    console.log("load image "+@index)

1 个答案:

答案 0 :(得分:4)

您需要使用=>运算符进行回调。您可能会发现this info有帮助。