定义胸腺中控制器的形式作用
我正在尝试定义控制器表单的操作属性。
这是在我的控制器类中:
model.addAttribute("action", "/signUnique(uClass=" + uClass + ")");
UCLASS是一个字符串,其中包含我要在URL中传递的值。 这在我的html(百里叶)文件中:
<form th:action="@{${action}}" method="POST">
我在动作中得到了这个:
/signUnique(uClass=2)
我是在胸腺和春季启动中的新手,这也是我第一次在stackoverflow上发布,所以如果我做错了什么,请原谅我。 谢谢。
I'm trying to define the action attribute of a form from the controller.
This is in my controller class:
model.addAttribute("action", "/signUnique(uClass=" + uClass + ")");
uClass is a string containing the value I want to pass in the url.
And this is in my html (thymeleaf) file:
<form th:action="@{${action}}" method="POST">
I'm getting this in the action:
/signUnique(uClass=2)
I'm new in thymeleaf and spring boot, and it is also my first time posting in stackoverflow, so please forgive me if I did something wrong.
Thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您只在控制器中构建整个URL:
如果您确实想在模板中解析胸腺表达式,则需要使用预处理。这样的事情将起作用:
I would recommend you just build the entire url in your controller:
If you really do want to parse a Thymeleaf expression in your template, you'll need to use preprocessing. Something like this will work: