2013-01-17 36 views
0

在CoffeeScript中,我使用這個加載一個JSON文件獲取JSON數據對象具有的CoffeeScript和jQuery

$.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")