我有两个 html 页面:/algorithrms
并/algorithms/add
用 scala 模板编写。路由文件包含以下几行:
GET /algorithms controllers.Application.algorithms()
GET /algorithms/add controllers.Application.newAlgorithmForm()
我想在页面中添加一个按钮,/algorithms
当我单击该按钮时,它只是重定向到第二页/algorithms/add
。我知道如何在 JavaScript 中做到这一点。我只想通过单击按钮调用一个动作,然后让该动作将我重定向到登录页面。
所以我在第一页的html模板中添加了以下代码:
@form(action=routes.Application.newAlgorithmForm()){
<input type="submit" value="Add">
}
它有效,但登陆网址是:http://localhost:9000/algorithms/add?
我不要那个问号。我想知道 1)我做错了什么导致问号生成和 2)如何删除它?