Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
622 views
in Technique[技术] by (71.8m points)

progressive web apps - Angular 8 Lighthouse : Requests the notification permission on page load

how to do a conditioning and how to add code in this code for the user so that the lighthouse does not display the message. I tried some conditioning but the results are still the same, is there anyone here who can help me ?

Note : if the notification pop-up is rejected (block), "permission denied" does not appear and still shows "permission success". Thanks :)

this my code in home.component

requestPermission() {
    this.msgService.requestToken.subscribe(
      (tokenize) => {
        console.log('Permission Success',tokenize);
      },
      (error) => {
        console.log("Denied", error);
      }
    )
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...