请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

const 定义的组件,有生命周期吗?


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定义的,我知道怎么用。



正在回答 回答被采纳积分+3

1回答

双越 2017-09-11 12:15:06

这是一个组件?这不就是一段模板吗?

0 回复 有任何疑惑可以回复我~
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信