0

在咖啡脚本中,我使用它来加载一个 json 文件

  $.ajax 'json/data.json',
        success  : (res, status, xhr, data) ->
            console.log("yea "+data)
        error    : (xhr, status, err) ->
            console.log("nah "+err)
        complete : (xhr, status) ->
            console.log("comp")

文件加载但数据出现未定义?

4

1 回答 1

1

成功需要不同的参数集:

success
Type: Function( Object data, String textStatus, jqXHR jqXHR )

试试这个:

$.ajax 'json/data.json',
        success  : (data, status, xhr) ->
            console.log("yea "+data)
        error    : (xhr, status, err) ->
            console.log("nah "+err)
        complete : (xhr, status) ->
            console.log("comp")
于 2013-01-17T07:18:36.987 回答