我的 React 代码中有一个函数定义如下:
getAttachment(url) {
fetch(url).then((responseText) => {
var response = responseText.json();
response.then(function(response){
this.setState({ attachment: response });
});
}.bind(this));
}
但是在编译时出现错误,说我在.bind(this)
. 任何想法,如何在Promise中设置状态?