这是我收到的错误消息:
Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('https://www.youtube.com') does not match the recipient window's origin ('http://localhost:9000').
我已经看到目标原点http://www.youtube.com和收件人原点是的其他类似问题https://www.youtube.com,但没有一个像我的目标https://www.youtube.com和原点是一样的问题http://localhost:9000。
http://www.youtube.com
https://www.youtube.com
http://localhost:9000
我相信这是目标来源的问题https。我怀疑这是因为您的 iFrame url 使用http而不是https. 尝试将您尝试嵌入的文件的 url 更改为https.
https
http
例如:
'//www.youtube.com/embed/' + id + '?showinfo=0&enablejsapi=1&origin=http://localhost:9000';
成为:
'https://www.youtube.com/embed/' + id + '?showinfo=0&enablejsapi=1&origin=http://localhost:9000';