前端Node.js如何和后端Spring Boot对接?
在Node.js前端与Spring Boot后端对接时,通常使用HTTP请求进行数据交换。以下是一个使用axios
库在Node.js中发送GET和POST请求到Spring Boot后端API的示例:
- 首先,确保你的Node.js项目中安装了
axios
库:
npm install axios
- 使用
axios
发送请求:
const axios = require('axios');
// GET请求示例
axios.get('http://localhost:8080/api/data')
.then(response => {
console.log(response.data); // 处理后端返回的数据
})
.catch(error => {
console.error(error); // 处理错误
});
// POST请求示例
axios.post('http://localhost:8080/api/data', {
key: 'value' // 你要发送的数据
})
.then(response => {
console.log(response.data); // 处理后端返回的数据
})
.catch(error => {
console.error(error); // 处理错误
});
确保后端的Spring Boot应用运行在http://localhost:8080
,并且有相应的路由处理/api/data
的请求。
以上代码是在Node.js中使用axios
库进行HTTP请求的简单示例。根据实际需求,你可能需要设置请求头(headers)、查询参数(query parameters)或者处理更复杂的业务逻辑。
评论已关闭