在coffeescript中,我正在使用它来加载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")
文件加载但数据出现未定义?
答案 0 :(得分: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")