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

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

0
2
双越
回复
qq_感观世界_03339825
参见 http://coding.imooc.com/learn/questiondetail/24169.html
2017-09-11
共2条回复

React高级实战 打造大众点评Web App

已经对React Router4与Webpack2进行了项目升级

1711 学习 · 707 问题

查看课程