1

coffescript で、jquery コールバックからクラス メソッドを呼び出したいのですが、クラスのスコープにアクセスするにはどうすればよいですか? this.loadImage(currentIndex) は動作しません

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)
4

1 に答える 1

4

=>コールバックには演算子を使用する必要があります。この情報が役立つ場合があります。

于 2013-01-17T07:59:50.957 に答える