gpt4 book ai didi

java - 通过spring Controller 从jsp获取值

转载 作者:行者123 更新时间:2023-12-01 06:54:40 24 4
gpt4 key购买 nike

我通过Spring Tool Suite IDE创建了MVC模板,但我不知道如何从jsp获取值。例如,我在 jsp

中创建了文本输入
<input type="text" />

但是如何将值获取到 Controller 以便能够在那里使用它?我知道,当我在 Controller 中向模型添加属性时,我可以通过 ${name} 访问它,但如何以其他方式做到这一点?

最佳答案

您需要一个表单,然后将值提交给 Controller ...

类似于:

<form name="foo" action="/foo/bar" method="post">
<input name="fieldName" type="text" />
<input type="submit" value="Submit">
<form>

然后将其放入您的 Controller 中:

@Controller
@RequestMapping(value = "/foo")
public class AdminController {

@RequestMapping(value = "/bar")
public String testAction(@RequestParam String fieldName) {
// yourValue contain the value post from the html form
return "yourview";
}
}

关于java - 通过spring Controller 从jsp获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15089801/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com