在Spring MVC和前端JS之间进行数据传递和接收是Web开发中的常见需求。本文将详细讲解两种常见的数据传递和接收方式,并提供两个示例说明。
方式一:表单提交
表单提交是一种常见的数据传递方式,它可以将表单中的数据提交到服务器端进行处理。在Spring MVC中,我们可以使用@RequestParam注解来获取表单数据。下面是一个示例:
<!DOCTYPE html>
<html>
<head>
<title>Form Example</title>
</head>
<body>
<h1>Form Example</h1>
<form method="POST" action="/form">
<label for="name">Name:</label>
<input type="text" id="name" name="name"/>
<br/><br/>
<label for="email">Email:</label>
<input type="email" id="email" name="email"/>
<br/><br/>
<label for="age">Age:</label>
<input type="number" id="age" name="age"/>
<br/><br/>
<input type="submit" value="Submit"/>
</form>
</body>
</html>
在上面的代码中,我们创建了一个HTML表单,用于提交数据。在表单中,我们使用