RTCPeerConnection.remoteDescription - Web API 接口参考 编辑
这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀。由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变。
只读属性 RTCPeerConnection.remoteDescription
返回一个 RTCSessionDescription
,它描述了和远程对端之间的会话(包括配置和媒体信息) ,如果还没有被设置过的话,它会是 null
.
这个值通常是通过信令服务器接收的对端的会话描述(作为提议或应答),调用RTCPeerConnection.setRemoteDescription()
之后生效。
语法
var sessionDescription = peerConnection.remoteDescription;
从更基础的层面上看,如果该属性不为null
,则返回值为RTCPeerConnection.pendingRemoteDescription
的值,否则,返回RTCPeerConnection.currentRemoteDescription
的值。有关此算法的详细信息及其使用原因,请参阅Pending and current descriptions in WebRTC connectivity。
示例
此示例查看remoteDescription
并显示包含RTCSessionDescription
对象的type和sdp
字段的警告。
var pc = new RTCPeerConnection();
…
var sd = pc.remoteDescription;
if (sd) {
alert("Remote session: type='" +
sd.type + "'; sdp description='" +
sd.sdp + "'");
}
else {
alert("No remote session yet.");
}
规范
标准 | 状态 | 说明 |
---|---|---|
WebRTC 1.0: Real-time Communication Between Browsers RTCPeerConnection.remoteDescription | Candidate Recommendation | 初始化规范 |
浏览器兼容性
BCD tables only load in the browser
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.相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论