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.
传递非字符串参数时,我使用以下第一行标记视图:
@(name: String,country: String)
向框架发出两个参数应该传递给它的信号。
如何表示我正在等待 String[] 参数?
在 scala 中,这是写Array[String]的,而不是String[]
Array[String]
String[]
@(name: Array[String])
这应该可以,在 Play 中你使用 scala 模板系统