我有兩個scala.html文件。如何從不同目錄中的scala.html文件中調用scala.html文件
views/receivables/snippet/account_types.scala.html
views/attendance/add_attendance.scala.html
如果我想打電話從第二scala.html文件或周圍的其他方法1 scala.html文件,我應該如何自文件調用在不同的目錄中?
我有兩個scala.html文件。如何從不同目錄中的scala.html文件中調用scala.html文件
views/receivables/snippet/account_types.scala.html
views/attendance/add_attendance.scala.html
如果我想打電話從第二scala.html文件或周圍的其他方法1 scala.html文件,我應該如何自文件調用在不同的目錄中?
我在views
包下添加了一個包admin_views
,並在那裏添加了一個test.scala.html
模板。 然後在從views
包我的觀點一個我引用其他包這樣看待:從views
包下 @views.html.admin_views.test()
一切都被編譯成views.html
所以這就是原因所在。 因此,在你的情況下,將views.html.receivables.snippet.account_types()
我解決了這個問題,這樣做:
我在包HTML斯卡拉文件views.process.popupFindProcess.scala.html
我把這個文件包views.itens.createIten.scala.html
添加 @import process.popupFindProcess
之後變量聲明在我的斯卡拉html頁面的頂部,並添加@popupFindProcess()
包括頁面。