state
。 state 包含应用程序需要了解的任何数据,这些数据可能会随时间而变化。你希望应用程序能够响应 state 的变更,并在必要时显示更新后的 UI。React 为现代 Web 应用程序的状态管理提供了一个很好的解决方案。
你可以通过在constructor
中的组件类上声明state
属性来在 React 组件中创建 state,它在创建时使用state
初始化组件。state
属性必须设置为 JavaScript对象
。声明如下:
```jsx
this.state = {
// describe your state here
}
```
你可以在组件的整个生命周期内访问state
对象,你可以更新它、在 UI 中渲染它,也可以将其作为 props 传递给子组件。state
对象的使用可以很简单,亦可以很复杂,就看你怎么用了。请注意,你必须通过扩展React.Component
来创建类组件,以便像这样创建state
。
state
中渲染一个name
属性,但是state
还没有定义。在constructor
中使用state
初始化组件,并将你的名字赋给name
属性。
StatefulComponent
应该存在并被渲染。
testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(StatefulComponent)); return mockedComponent.find('StatefulComponent').length === 1; })());
- text: StatefulComponent
应该渲染一个div
元素和一个h1
元素。
testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(StatefulComponent)); return mockedComponent.find('div').length === 1 && mockedComponent.find('h1').length === 1; })());
- text: 应使用被设置为字符串的name
属性来初始化StatefulComponent
的 state。
testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(StatefulComponent)); const initialState = mockedComponent.state(); return ( typeof initialState === 'object' && typeof initialState.name === 'string'); })());
- text: StatefulComponent
中 state 的name
属性应该渲染在h1
元素里。
testString: assert((function() { const mockedComponent = Enzyme.mount(React.createElement(StatefulComponent)); const initialState = mockedComponent.state(); return mockedComponent.find('h1').text() === initialState.name; })());
```