navigator.share() 不是函数
navigator.share() is not a function
我正在尝试使用 navigator.canShare()
和 navigator.share()
在 React 应用程序中试验网络共享。
当我在 React 中调用 navigator.canShare()
时,我得到以下 运行 时间错误:
TypeError: navigator.share is not a function
我怎样才能做出反应来识别 navigator.canShare()
?
如 MDN docs 中所述,您只能通过 HTTPS
使用 navigator.share()
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
我正在尝试使用 navigator.canShare()
和 navigator.share()
在 React 应用程序中试验网络共享。
当我在 React 中调用 navigator.canShare()
时,我得到以下 运行 时间错误:
TypeError: navigator.share is not a function
我怎样才能做出反应来识别 navigator.canShare()
?
如 MDN docs 中所述,您只能通过 HTTPS
使用navigator.share()
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.