Как решить эту ошибку в реакции нативного проекта с Mobx и реагировать на натив? - PullRequest
2 голосов
/ 13 марта 2019

Теперь я пытаюсь создать приложение с реагировать на нативный, Mobx и Expo.

Однако после того, как я установил Mobx и сделал Store с наблюдаемым из Mobx, я получил ошибку, как показано ниже.

enter image description here

В дополнение к упомянутой мной информации я использую некоторые декораторы, такие как @observer и @inject, Provider.

Добавьте мой кодкомпонента с провайдером.

import React from "react";
import { View, StyleSheet } from "react-native";
import { Provider } from "mobx-react/native";
import HomeHeader from "../Elements/Home/HomeHeader";
import HomeShopList from "../Elements/Home/HomeShopList";
import HomeAllCouponListButton from "../Elements/Home/HomeAllCouponListButton";
import HomeAllShopListButton from "../Elements/Home/HomeAllShopListButton";
import RestaurantStore from "../Stores/EachStores/RestaurantStore";

class Home extends React.Component {
  render() {
    const { navigation } = this.props;
    return (
      <View style={styles.container}>
        <HomeHeader />
        <Provider restaurantStore={RestaurantStore}>
          <HomeShopList navigation={navigation} />
        </Provider>
        <HomeAllCouponListButton />
        <HomeAllShopListButton />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1
  }
});

1 Ответ

0 голосов
/ 13 марта 2019

Ваш магазин провайдера должен быть правильно настроен:

Должно быть так.

<Provider restaurantStore={RestaurantStore}>

А не как ниже:

 <Provider store={RestaurantStore}> 

Пожалуйста, обратитесь здесь

Также попробуйте изменить оператор импорта с

import RestaurantStore from "../Stores/EachStores/RestaurantStore";

Кому:

import { RestaurantStore} from "../Stores/EachStores/RestaurantStore";
...