我正在尝试使用传递 json 对象的构造函数创建一个 RN 对象,但我收到“ReferenceError:找不到变量:产品”。产品.jsexport default class Product { constructor(product) { this.name = product.name this.items = product.Items this.price = product.Price this.productID = product.ProductID this.medias = product.Medias this.imageSmall = BASE_IMAGES_URL + product.MediaSmall this.imageLarge = this.getImageLarge(product.Medias) }}PDP.jsimport { Product } from '../models/Product'class PDP extends Component { render() { var imagesProd = []; var product = new Product(this.props.navigation.state.params.currentProduct); ....}}问题是new Product()直接使用可以this.props.navigation.state.params.currentProduct正常工作。编辑根据您的提示,我将导入更改为,import Product from '../models/Product'但我得到了TypeError:TypeError:TypeError:TypeError:未定义不是构造函数(评估'new P.default(s)')
添加回答
举报
0/150
提交
取消