2015-06-15 55 views
0

我掙扎於不同部位scala/java應用程序一起調用Application.method(String s)將方法從index.scala.html

在我controllers.Application聯繫我:

routes
public static Result getInfo(String id) { 
... 
} 

有:

GET  /Info/:id controllers.Application.getInfo(id: String) 

現在我想要做的就是使用這樣的結構,我的網頁的一部分

例如`index.scala.html我想說 - >

<div myid="info"> 
@helper.form(controllers.Application.getInfo(@id)) 
</div> 

這給了我以下錯誤:

illegal start of simple expression 
@helper.form(controllers.Application.getInfo(@id)) //error highlights the @ sign before id 

我不太知道我應該把爲index.scala.html有人能解釋我在做什麼錯了,請

+1

刪除ID附近的第二個'@'。 – 757071

回答

0

這不是一個非常有用的錯誤信息......

我注意到Ø ne的東西馬上蝙蝠,但:在你的routes文件中你有getPersonalInfo,但在你的Application類中,你有getInfo的方法名稱。

+0

對不起,我試圖改變名稱來簡化讀數,我忘記了,我會馬上更新我的問題 – nafas

相關問題