nodejs axios 写一份 post 交互的框架
时间: 2024-01-05 22:44:32 浏览: 90
nodejs框架
好的,我可以为您提供一份post交互的框架,这是一个nodejs中使用axios实现的样例代码:
```
const axios = require('axios');
async function postData(apiUrl, data) {
try {
const headers = {
'Content-Type': 'application/json'
};
const response = await axios.post(apiUrl, data, { headers: headers });
return response.data;
} catch (error) {
console.error(error);
throw error;
}
}
module.exports = { postData };
```
您只需传入apiUrl和data参数即可使用该函数进行post请求,并可以获取到后端的数据响应。
阅读全文