尽管使用箭头语法,但无法读取未定义的属性“状态”
2021-04-24
107
在我的示例中,我从 API 中获取了一个 Product-Object。Product 具有 ImageIds,指的是图片,在获取产品后,我也从 API 中获取了这些图片。
class ProductDetails extends Component {
state = {
productId: this.props.match.params.id,
product: null,
imagePaths: [],
currentImagePath: null,
loading: true
}
constructor(props) {
super(props);
this.request = getDefaultRequest();
}
componentDidMount = () => {
this.fetchProduct();
}
// Api calls
fetchProduct = async () => {
const response = await this.request.get(`http://localhost:8080/product/Id=${this.state.productId}`);
let { product } = response.data;
this.setState({
product
}, () => {
this.fetchImages().then((images) => {
this.setImagePaths(images);
});
});
}
fetchImages = async () => {
let { product } = this.state;
let images = [];
for (let i = 0; i < product.ProductImageIds.length; i++) {
let currentProducImageId = product.ProductImageIds[i];
let response = await this.request.get(`http://localhost:8080/productImage/Id=${currentProducImageId}`);
images.push(response.data.productImage);
}
return Promise.resolve(images);
}
setImagePaths = (images) => {
let imagePaths = images.map(image => {
return image.absolutePath.split("public")[1].replaceAll("\\", "/");
});
this.setState({
imagePaths,
currentImagePath: imagePaths[0],
loading: false
});
}
render() {
let { product, loading } = this.state;
if (!loading) {
return (
<div>
<h2 className="t-center">{product.name}</h2>
<div className="wrap-product-details">
<ProductQuickWatch
imagePaths={this.state.imagePaths}
currentImagePath={this.state.currentImagePath}
productName={this.state.product.name}
productId={this.state.product._id}
orientation="vertical">
</ProductQuickWatch>
</div>
</div>
);
}
return (
<LoadingCircle
usePortal={true}
loading={true} />
)
}
但现在我得到了“ TypeError:无法读取未定义的属性‘state’ ”
我调试了这个问题,发现在将加载状态设置为 false(在 setImagePaths() 中)之前,一切都运行正常。
如果我省略将加载设置为 false,一切都运行正常。 但我不知道为什么。如果你看看 render(),加载状态很重要。
我研究了这个问题,一个可能的解决方案是在构造函数中绑定函数。 但通常如果你使用箭头语法,“this”就不是问题。我也尝试过了,但是没有用 :/。
错误:
TypeError: Cannot read property 'state' of undefined
new i
C:/Users/David/Documents/GitHub/React/ShoppingTemplate/src/Store/WithStore.jsx:22
19 | children: null,
20 | };
21 |
> 22 | constructor(props, context) {
| ^ 23 | super(props, context);
24 | this.state = mapStateToProps({ ...context.state });
25 | this.updateStateProps = this.updateStateProps.bind(this);
▶ 19 stack frames were collapsed.
ProductDetails.setImagePaths
C:/Users/David/Documents/GitHub/React/ShoppingTemplate/app/src/Components/Category/ProductDetails.jsx:47
44 | let imagePaths = images.map(image => {
45 | return image.absolutePath.split("public")[1].replaceAll("\\", "/");
46 | });
> 47 | this.setState({
| ^ 48 | imagePaths,
49 | currentImagePath: imagePaths[0],
50 | loading: false
View compiled
(anonymous function)
C:/Users/David/Documents/GitHub/React/ShoppingTemplate/app/src/Components/Category/ProductDetails.jsx:28
25 | product
26 | }, () => {
27 | this.fetchImages().then((images) => {
> 28 | this.setImagePaths(images);
| ^ 29 | });
30 | });
31 | }
2个回答
有趣的讨论 ;) 我会把这个作为答案,尽管它并没有真正回答。但它太长了,评论也太杂乱了。两点:
- 这部分
new i
C:/Users/David/Documents/GitHub/React/ShoppingTemplate/src/Store/WithStore.jsx:22
很有趣,因为据我所知,它出现在错误上下文中,但不是代码。那么这是从哪里来的呢?您的问题中可能缺少一些信息。
-
这是一个相当复杂的
this
和=>
链。我没有看到错误,但用“眼睛”调试很糟糕。添加大量的console.logs(1)
、console.logs(2)
等,以查看代码中断的确切位置。当您有该行时,输出this
和this.state
。可能出错的选项只有两种:错误或 this.state 未定义。有了这些信息,在大多数情况下修复错误相对简单。
2021-04-24
我发现,这与我在 ProductQuickWatch 组件 中使用的 库 调用 “pure-react-carousel” 有关。 这里 有一个类似的错误。当我删除它时,我可以将加载状态设置为 false。 我必须对该错误进行更多研究。不过还是感谢您的回答。
Dyvd
2021-04-24