2012-09-27 42 views
-1

我安裝了項目零,並從存儲庫中與員工一起創建了項目。它工作正常,這個部分:訪問數據庫時groovy項目零錯誤

URL employeeURL = new URL(getAbsoluteUri("/resources/employees")); 
employees = zero.json.Json.decode(employeeURL); 

但是當我將其更改爲

URL temasUrl  = new URL(getAbsolureUri("/resources/teams")); 
URL teams = zero.json.Json.decode(teamsURL); 

我得到一個錯誤,雖然資源是通過瀏覽器 這個訪問是錯誤

groovy.lang.MissingMethodException:No signature of method: charts.getAbsolureUri() is applicable for argument types: (java.lang.String) values: [/resources/teams] 

回答

1

根據第一個片段,第二個片段中的getAbsolureUri()看起來應該是getAbsoluteUri()

+0

謝謝你,這是非常簡單的錯誤。有時需要其他人查看你的代碼。非常感謝。 –