我想在我的dom树中加载一个外部网站,例如www.twitter.com,然后修改例如一些div 。如何使用Dart做到这一点?
即使我更改了网站,通过键入搜索请求,我还应该能够在dom树中插入覆盖。
Dart是否可以修改外部网页?
也许使用iframe可以吗?
<iframe src="https://www.twitter.com" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
但是我收到错误消息
Refused to display 'https://twitter.com/' in a frame because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'self'".