我为我的应用程序写了一些新的视图,它们都在chrome和safari上正确显示。但是,当我在模拟器上运行应用程序并打开Safari调试器时,这些视图不会显示在extension AppDelegate: UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
print(response.notification.request.content.userInfo)
completionHandler()
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .badge, .sound])
}
}
下。我已确认这些文件存在于Xcode项目的index.html/scripts/
和www/
文件夹中。我已经运行Staging/www/
,但它没有解决问题,我是否需要将这些新文件添加到某个目录?
答案 0 :(得分:0)
尝试通过移动版Safari访问我的应用程序后,我在Safari检查器上遇到了一个错误,我已经连接到我的模拟器。它告诉我,由于我使用const
模式,因此无法使用strict
。之前没有弹出这个错误,只是出于随机运气(当我关闭safari选项卡时)它甚至出现在检查员身上。这导致我对我使用const
的文件进行更改并立即加载页面。