Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/react-native/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
React native React本机推送通知onNotification事件不工作_React Native_React Native Push Notification - Fatal编程技术网

React native React本机推送通知onNotification事件不工作

React native React本机推送通知onNotification事件不工作,react-native,react-native-push-notification,React Native,React Native Push Notification,在这件事上被困了好几天。因此,我使用这个包来实现本地推送通知: 我可以获得如下本地计划通知: PushNotification.localNotificationSchedule({ date: new Date(Date.now() + 30 * 1000), // in 30 secs /* Android Only Properties */ //id: ''+this.lastId, // (optional) Valid unique

在这件事上被困了好几天。因此,我使用这个包来实现本地推送通知:

我可以获得如下本地计划通知:

PushNotification.localNotificationSchedule({
        date: new Date(Date.now() + 30 * 1000), // in 30 secs

        /* Android Only Properties */
        //id: ''+this.lastId, // (optional) Valid unique 32 bit integer specified as string. default: Autogenerated Unique ID
        ticker: "My Notification Ticker", // (optional)
        autoCancel: true, // (optional) default: true
        largeIcon: "ic_launcher", // (optional) default: "ic_launcher"
        smallIcon: "ic_notification", // (optional) default: "ic_notification" with fallback for "ic_launcher"
        bigText: "My big text that will be shown when notification is expanded", // (optional) default: "message" prop
        subText: "This is a subText", // (optional) default: none
        color: "blue", // (optional) default: system default
        vibrate: true, // (optional) default: true
        vibration: 300, // vibration length in milliseconds, ignored if vibrate=false, default: 1000
        tag: "some_tag", // (optional) add tag to message
        group: "group", // (optional) add group to message
        ongoing: false, // (optional) set whether this is an "ongoing" notification

        /* iOS only properties */
        alertAction: "view", // (optional) default: view
        category: null, // (optional) default: null
        userInfo: null, // (optional) default: null (object containing additional notification data)

        /* iOS and Android properties */
        title: "Scheduled Notification", // (optional)
        message: "My Notification Message", // (required)
        playSound: true, // (optional) default: true
        soundName: "default", // (optional) Sound to play when the notification is shown. Value of 'default' plays the default sound. It can be set to a custom sound such as 'android.resource://com.xyz/raw/my_sound'. It will look for the 'my_sound' audio file in 'res/raw' directory and play it. default: 'default' (default sound is played)
        actions: '["Yes", "No"]', // (Android only) See the doc for notification actions to know more
        foreground: false, // BOOLEAN: If the notification was received in foreground or not
        userInteraction: true, // BOOLEAN: If the notification was opened by the user from the notification area or not
        data: { type: "test" } // OBJECT: The push data
      });
我想在用户单击通知和应用程序打开时调用函数。为了实现以下目标,我在App.js中执行了以下操作:

async componentDidMount() {
    PushNotification.configure({
      // (required) Called when a remote or local notification is opened or received
      onNotification: function(notification) {
        console.log("NOTIFICATION:", notification);
      },

      // IOS ONLY (optional): default: all - Permissions to register.
      permissions: {
        alert: true,
        badge: true,
        sound: true
      },

      // Should the initial notification be popped automatically
      // default: true
      popInitialNotification: true,

      /**
       * (optional) default: true
       * - Specified if permissions (ios) and token (android and ios) will requested or not,
       * - if not, you must call PushNotificationsHandler.requestPermissions() later
       */
      requestPermissions: true
    });
  }
但是,
onNotification
函数没有被调用

我已经回答了以下问题,但运气不好

我还提出了一个关于Github的问题


什么是可能的解决方案?

对于那些要求解决方案的人,我在我的app.js的
componentDidMount
方法中做了如下操作:

PushNotification.configure({
        // (required) Called when a remote or local notification is opened or received
        onNotification: notification => {
          console.log(notification);

          if (notification.action === "Take") {
            //do something here
          } else if (notification.action === "Skip") {
            //do something here
          } else if (notification.action === "Snooze") {
            //do something here
          }
        },

        // IOS ONLY (optional): default: all - Permissions to register.
        permissions: {
          alert: true,
          badge: true,
          sound: true
        },

        // Should the initial notification be popped automatically
        // default: true
        popInitialNotification: true,

        /**
         * (optional) default: true
         * - Specified if permissions (ios) and token (android and ios) will requested or not,
         * - if not, you must call PushNotificationsHandler.requestPermissions() later
         */
        requestPermissions: true
      });

你解决你的问题了吗?@simo我也遇到了同样的问题,你发现了什么吗?可能与此相关:你找到了解决方案吗@3iL?@simo请检查我的答案