过时
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

RTCPeerConnection.onidpassertionerror event handler is a property containing the code to execute whent the idpassertionerror event, of type RTCIdentityErrorEvent , is received by this RTCPeerConnection . Such an event is sent when the associated identity provider (IdP) encounters an error while generating an identity assertion.

This event handler is deprecated. You should instead detect IdP assertion errors by handling rejection of the promise 返回通过 RTCPeerConnection.peerIdentity .

句法

peerconnection.onidpassertionerror = function;
					

  • function is the name of a user-defined function, without the () suffix or any parameters, or an anonymous function declaration, such as function(event) {...} . An event handler always has one single parameter, containing the event, here of type RTCIdentityErrorEvent .

范例

pc.onidpassertionerror = function(ev) { alert("onidpassertionerror event detected!"); };
					

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
onidpassertionerror 弃用 非标 Chrome No Edge ≤18 — 79 Firefox 22 IE No Opera 43
43
Promise-based version.
不支持 37 — 43
Safari ? WebView Android No Chrome Android No Firefox Android 44 Opera Android 43
43
Promise-based version.
不支持 37 — 43
Safari iOS ? Samsung Internet Android 6.0

图例

完整支持

完整支持

不支持

不支持

兼容性未知 ?

兼容性未知

非标。预期跨浏览器支持较差。

非标。预期跨浏览器支持较差。

弃用。不要用于新网站。

弃用。不要用于新网站。

见实现注意事项。

另请参阅

元数据

  • 最后修改: