• Chrome 将 Notification.requestPermission() 的“default”结果视​​为“dennied”


    当用户第三次关闭权限对话框时,Chrome 会自动将权限设置为deniedautomatically blocked在导航栏的权限弹出窗口中显示以下消息)。因此,用户关闭对话框的前三次default结果是,但第三次将权限设置为denied

    我用来处理这个逻辑的方式是:

    window.Notification.requestPermission().then((result) => {
      if (result === 'denied') {
         // the user has denied permission
         return;
      }
    
      if (result === 'default') {
        // the user has closed the dialog
        if (window.Notification.permission === 'denied') {
           // the browser has decided to automatically denied permission 
        }
        return;
      }
    
      // the user has granted permission
    });
  • 相关阅读:
    Java中数组遍历
    数组常见异常
    数组的访问
    Java中数组的定义方式
    Java中数组的概念与特点
    node爬虫技术初探
    node相关内容
    vs code快捷键
    vue 入门开发
    es6 常见用法
  • 原文地址:https://www.cnblogs.com/taoshihan/p/16888731.html
Copyright © 2020-2023  润新知