const 定义的组件,有生命周期吗?
来源:9-3 抽离input-1
sskcal
2017-09-11
const ProductItem = ({ product, onAddToCartClicked }) => (
<div style={{ marginBottom: 20 }}>
<Product
title={product.title}
price={product.price}
inventory={product.inventory} />
<button
onClick={onAddToCartClicked}
disabled={product.inventory > 0 ? '' : 'disabled'}>
{product.inventory > 0 ? 'Add to cart' : 'Sold Out'}
</button>
</div>
)
这样定义一个组件,能使用componentDidMount(){}方法吗?如果能用,这个方法写在哪里。怎么写?谢谢。
用class定义的,我知道怎么用。
写回答
1回答
-
双越
2017-09-11
这是一个组件?这不就是一段模板吗?
022017-09-11
相似问题