Load Initial Data via AJAX
  • References/JavaScript/React/Tips

Fetch data in componentDidMount. When the response arrives, store the data in state, triggering a render to update your UI. When

2025-01-10 15:47:30
componentWillReceiveProps Not Triggered After Mounting
  • References/JavaScript/React/Tips

componentWillReceiveProps isn't triggered after the node is put on scene. This is by design. Check out other lifecycle methods for the one that suits your needs

2025-01-10 15:47:30
Type of the Children props
  • References/JavaScript/React/Tips

Usually, a component's children (this.props.children) is an array of components: var

2025-01-10 15:47:30
DOM Event Listeners in a Component
  • References/JavaScript/React/Tips

This entry shows how to attach DOM events not provided by React (check here for more info)

2025-01-10 15:47:30
Use React with Other Libraries
  • References/JavaScript/React/Tips

You don't have to go full React. The component lifecycle events, especially componentDidMount and componentDidUpdate, are good places to put your

2025-01-10 15:47:30
Self-Closing Tag
  • References/JavaScript/React/Tips

In JSX, <MyComponent /> alone is valid while <MyComponent> isn't. All tags must be closed, either with the self-closing format or with

2025-01-10 15:47:30
Shorthand for Specifying Pixel Values in style props
  • References/JavaScript/React/Tips

When specifying a pixel value for your inline style prop, React automatically appends the string "px" for you after your number value, so this works:

2025-01-10 15:47:30