Реагировать на встроенную навигацию Wix Navigation.pop Возможное необработанное отклонение обещания (id: 0): Ошибка: не удалось выполнить команду стека - PullRequest
2 голосов
/ 31 мая 2019

Описание

Я использовал Wix реагировать на родную навигацию (V2) в своем приложении для реакции на родную. У меня есть ошибка, если выведите ID компонента.

Error ::

Possible Unhandled Promise Rejection (id: 0):
Error: Failed to execute stack command. Stack secondScreen not found.
Error: Failed to execute stack command. Stack secondScreen not found.

secondScreen.js

class SecondScreen extends React.PureComponent {

   constructor(props) {
      super(props);
      this.navigationEventListener = Navigation.events().bindComponent(this);
   }

   componentDidDisappear() {
      Navigation.pop(this.props.componentId)
   }

   render() {
      const { handleSubmit } = this.props;
      return (
         <Text>SecondScreen</Text>
      )
   }
}

export default SecondScreen;

Подскажите, пожалуйста, как убрать предупреждение.

...