Does this.setState return promise in react

后端 未结 6 1188
陌清茗
陌清茗 2020-12-03 07:19

I made my componentWillMount() async. Now I can using await with the setState.

Here is the sample code:

compon         


        
相关标签:
6条回答
  • 2020-12-03 08:00

    setState does not return a promise.

    setState has a callback.

    this.setState({
        ...this.state,
        key: value,
    }, () => {
        //finished
    });
    
    0 讨论(0)
  • 2020-12-03 08:02

    setState is usually not used with promises because there's rarely such need. If the method that is called after state update (fetchRooms) relies on updated state (roomId), it could access it in another way, e.g. as a parameter.

    setState uses callbacks and doesn't return a promise. Since this is rarely needed, creating a promise that is not used would result in overhead.

    In order to return a promise, setState can be promisified, as suggested in this answer.

    Posted code works with await because it's a hack. await ... is syntactic sugar for Promise.resolve(...).then(...). await produces one-tick delay that allows to evaluate next line after state update was completed, this allows to evaluate the code in intended order. This is same as:

    this.setState({ roomId: room && room.roomId ? room.roomId : 0 } => {
      console.log(2)
    })
    
    setTimeout(() => {
      console.log(3)
    });
    

    There's no guarantee that the order will stay same under different conditions. Also, first setState callback isn't a proper place to check whether a state was updated, this is what second callback is for.

    0 讨论(0)
  • 2020-12-03 08:08

    Don't think setState is returning a Promise but you can always do this

     await new Promise( ( resolve ) => 
         this.setState( {
             data:null,
         }, resolve )
     )
    

    or you can make some utility function like this

    const setStateAsync = ( obj, state ) => {
        return new Promise( ( resolve ) =>
            obj.setState( state , resolve )
        )
    }
    

    and use it inside a React.Component like this:

    await setStateAsync(this,{some:'any'})
    
    0 讨论(0)
  • 2020-12-03 08:12

    It does not return a promise.

    You can slap the await keyword in front of any expression. It has no effect if that expression doesn't evaluate to a promise.

    setState accepts a callback.

    0 讨论(0)
  • 2020-12-03 08:12

    You can simple customize a Promise for setState

      componentWillMount = async () => {
        console.log(1);
        await this.setRooms();
        console.log(3);
      };
    
      setRooms = () => {
        const { fetchRooms } = this.props;
        return fetchRooms().then(({ room }) => {
          this.setState({ roomId: room && room.roomId ? room.roomId : 0 }, _ =>
            console.log(2)
          );
        });
      };
    

    Or

      setRooms = async () => {
        const { fetchRooms } = this.props;
        const { room } = await fetchRooms();
    
        return new Promise(resolve => {
          this.setState({ roomId: room && room.roomId ? room.roomId : 0 }, _ =>
            resolve()
          );
        });
      };
    

    Hope this help =D

    0 讨论(0)
  • 2020-12-03 08:14

    You can promisify this.setState so that you can use the React API as a promise. This is how I got it to work:

    class LyricsGrid extends Component {
    
      setAsyncState = (newState) =>
        new Promise((resolve) => this.setState(newState, resolve));
    

    Later, I call this.setAsyncState using the standard Promise API:

    this.setAsyncState({ lyricsCorpus, matrix, count })
      .then(foo1)
      .then(foo2)
      .catch(err => console.error(err))
    
    0 讨论(0)
提交回复
热议问题