안드로이드에 대한 네이티브 반응으로 지역 알림을 보내려고합니다. 인터넷 검색을 통해 Headless JS를 사용하는 것이 하나의 방법이라는 것을 알았지 만 정확히 달성 할 수있는 방법을 아는 사람이 있습니까? 그리고헤드리스 JS를 사용한 실제 네이티브 로컬 알림
답변
당신이 S에
https://github.com/zo0r/react-native-push-notification#scheduled-notifications
https://github.com/zo0r/react-native-push-notification#repeating-notifications
PushNotification.localNotificationSchedule({
message: "My Notification Message", // (required)
date: new Date(Date.now() + (60 * 1000)) // in 60 secs
});
편집 한
PushNotification.localNotificationSchedule({
message: "My Notification Message",
date: new Date(fireDate),
repeatType: 'time',
repeatTime: 3600000
});
오전 10시에 알림을받는 방법 –
https://github.com/zo0r/react-native-push-notification#repeating-notifications 'PushNotification.localNotificationSchedule ({ 메시지 : "내 알림 메시지", 날짜 : 새로운 날짜 (fireDate), repeatType : 'time', repeatTime : 3600000 }) ' – Jigar
이 코드를 어디에 두어야합니까 ??? App.js에서 ??? "react-native init
에 오신 것을 환영합니다을 사용하여이를 달성 할 수있는 특정 시간에 지역의 통지를 매일 필요 압정 오버플로. [좋은 질문을하는 방법은 무엇입니까?] (https://stackoverflow.com/help/how-to-ask) 및 [여기에 대해 나는 무엇에 관해 질문 할 수 있습니까?] (https://stackoverflow.com/help)를 읽어보십시오./on-topic). 연구하고, 무언가를 시도하고, 코드를 추가하고, 문제를 지적하십시오. – pirho