Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的路由文件中有一个定义为 @com.xyx.abc(str: String) 的路由。
我想在模板中使用这条路线。我尝试使用
<a href="@com.xyx.abc("temp")/>
显然没有奏效。
提前致谢。
每个包都会生成反向路由器。因此,如果您有一个名为 的包com、一个名为 的控制器xyx和一个名为 的方法abc,那么您可以这样做:
com
xyx
abc
@com.routes.xyx.abc("temp")
或者,如果它更现实@com.example.MyController.abc(str: String),那么它将是:
@com.example.MyController.abc(str: String)
@com.example.routes.MyController.abc("temp")