RTCSessionDescription: toJSON() 方法

RTCSessionDescription.toJSON() 方法会生成对象的 JSON 描述。生成的 JSON 包含两个属性:typesdp

语法

js
toJSON()

参数

无。

返回值

包含以下属性的 JSON 对象

type

以下之一:"offer""answer""pranswer"null

sdp

null 或与 RTCSessionDescription.sdp 属性对应的 SDP 消息字符串。

示例

js
// sd is a RTCSessionDescriptor

alert(JSON.stringify(sd)); // This call the toJSON() method behind the scene.

规范

规范
WebRTC:浏览器中的实时通信
# dom-rtcsessiondescription-tojson

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅