我在前端使用react js,在我的ToDo应用程序中使用zf3作为后端。我将所有React文件夹和文件放在Zend项目的公共文件夹中。截至目前,它只是简单的应用程序,没有数据库连接。现在我想添加Db来存储任务。但作为一个新手,我不知道如何使Http请求编辑删除并添加任务。请举例说明。任何帮助将不胜感激。谢谢。
答案 0 :(得分:2)
我使用axios。它允许您设置一些默认配置,这样您就不需要对每个请求执行此操作:
axios.defaults.headers.common.Authorization = "my-awesome-token";
axios.defaults.baseURL = http://www.somehost.com/api;
...
axios.get('/people')
.then(response => handleResponse(response))
.catch(error => handleError(error))
// actually shoots to http://www.somehost.com/api/people with Authorization header
答案 1 :(得分:0)
http请求有很多npm模块。这是一个smiple:https://github.com/request/request
答案 2 :(得分:0)
install axios
$ npm install axios
import axios
import axios from 'axios';
get request
axios.get('api url').then(function (response) {
console.log(response);
}).catch(function (error) {
console.log(error);
});
post request
var body = {
firstName: 'testName',
lastName: 'testLastName'
};
axios.post('api url',body).then(function (response) {
console.log(response);
}).catch(function (error) {
console.log(error);
});