Answers:
直接来自React docs:
fetch('https://mywebsite.com/endpoint/', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
firstParam: 'yourValue',
secondParam: 'yourOtherValue',
})
})
(这是发布JSON,但您也可以执行multipart-form。)
fetch
React内置了它,实际上不是,而且没有指向所引用文档的链接。fetch
(在撰写本文时)是基于Promise的实验性API。为了使浏览器兼容,您需要babel polyfill。
对于您如何进行REST调用,React并没有真正的看法。基本上,您可以为该任务选择所需的任何一种AJAX库。
使用普通的旧JavaScript的最简单方法可能是这样的:
var request = new XMLHttpRequest();
request.open('POST', '/my/url', true);
request.setRequestHeader('Content-Type', 'application/json; charset=UTF-8');
request.send(data);
在现代浏览器中,您也可以使用fetch
。
如果您有更多可以进行REST调用的组件,则可以将此类逻辑放在可以在各个组件之间使用的类中。例如RESTClient.post(…)
fetch
或superagent
或jQuery
或axios
或不属于“ vanilla React”的其他内容,才能执行上述操作之外的任何其他操作。
JSON.stringify({"key": "val"})
,然后再在烧瓶方面进行工作request.get_json()
JSON.stringify
先发布。
另一个最近流行的软件包是:axios
安装: npm install axios --save
基于简单承诺的请求
axios.post('/user', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
你可以安装超级代理
npm install superagent --save
然后拨打电话到服务器
import request from "../../node_modules/superagent/superagent";
request
.post('http://localhost/userLogin')
.set('Content-Type', 'application/x-www-form-urlencoded')
.send({ username: "username", password: "password" })
.end(function(err, res){
console.log(res.text);
});
从2018年开始,您还有一个更现代的选择是将异步/等待合并到ReactJS应用程序中。可以使用基于承诺的HTTP客户端库,例如axios。示例代码如下:
import axios from 'axios';
...
class Login extends Component {
constructor(props, context) {
super(props, context);
this.onLogin = this.onLogin.bind(this);
...
}
async onLogin() {
const { email, password } = this.state;
try {
const response = await axios.post('/login', { email, password });
console.log(response);
} catch (err) {
...
}
}
...
}
await
-SyntaxError: await is a reserved word (33:19)
我认为这种方式也是正常的方式。但是抱歉,我不能用英语来描述((
submitHandler = e => {
e.preventDefault()
console.log(this.state)
fetch('http://localhost:5000/questions',{
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(this.state)
}).then(response => {
console.log(response)
})
.catch(error =>{
console.log(error)
})
}
https://googlechrome.github.io/samples/fetch-api/fetch-post.html
fetch('url / questions',{方法:'POST',标头:{接受:'application / json','Content-Type':'application / json',},正文:JSON.stringify(this.state) })。then(response => {console.log(response)}).catch(error => {console.log(error)})
这是一个为get和post都修改的util函数(堆栈上的另一篇文章)。制作Util.js文件。
let cachedData = null;
let cachedPostData = null;
const postServiceData = (url, params) => {
console.log('cache status' + cachedPostData );
if (cachedPostData === null) {
console.log('post-data: requesting data');
return fetch(url, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(params)
})
.then(response => {
cachedPostData = response.json();
return cachedPostData;
});
} else {
console.log('post-data: returning cachedPostData data');
return Promise.resolve(cachedPostData);
}
}
const getServiceData = (url) => {
console.log('cache status' + cachedData );
if (cachedData === null) {
console.log('get-data: requesting data');
return fetch(url, {})
.then(response => {
cachedData = response.json();
return cachedData;
});
} else {
console.log('get-data: returning cached data');
return Promise.resolve(cachedData);
}
};
export { getServiceData, postServiceData };
在另一个组件中的用法如下
import { getServiceData, postServiceData } from './../Utils/Util';
constructor(props) {
super(props)
this.state = {
datastore : []
}
}
componentDidMount = () => {
let posturl = 'yoururl';
let getdataString = { name: "xys", date:"today"};
postServiceData(posturl, getdataString)
.then(items => {
this.setState({ datastore: items })
console.log(items);
});
}
这是一个例子:https : //jsfiddle.net/69z2wepo/9888/
$.ajax({
type: 'POST',
url: '/some/url',
data: data
})
.done(function(result) {
this.clearForm();
this.setState({result:result});
}.bind(this)
.fail(function(jqXhr) {
console.log('failed to register');
});
它使用了jquery.ajax
方法,但是您可以轻松地将其替换为基于AJAX的库,例如axios,superagent或fetch。
'{"Id":"112","User":"xyz"}'
并将URL更改为localhost:8080 / myapi / ui / start,仅此而已,一旦XHR调用成功,您将进入done方法中,并可以通过结果访问数据属性。