如何在游戏框架中使用选项类型作为路径婴儿车?

时间:2019-01-08 19:12:26

标签: scala playframework

我想在路径文件中使用Option类型作为路径参数来调用控制器中的操作方法-

在路线文件中

using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Common;

....
string query = @" //sql multi-command text here"

using (SqlConnection thisconn = new SqlConnection(connectionString)) {
    Server db = new Server(new ServerConnection(thisconn));
    db.ConnectionContext.ExecuteNonQuery(query);
}

在控制器中-

GET /test/:x/:y       controllers.TestController.test(x:Int, y:Option[Int])

但是我的编译器说我-

def test(x:Int,y:Option[Int])=Action{. . . .}

如何为选项类型执行此操作?

0 个答案:

没有答案