(nextProps, nextState)
| 49 | } |
| 50 | |
| 51 | componentWillUpdate (nextProps, nextState) { |
| 52 | // initValue 和 initData 分开处理 |
| 53 | if (nextState.value !== this.state.value) { |
| 54 | this.init(nextState.data, nextState.value); |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | formatValue (value) { |
| 59 | return toArray(value, this.props.sep); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…