4
我嵌入我的網頁的iFrame,這樣的事情:內容安全政策指令:「幀祖先‘自我’
var iframeProps = {
'data-type': self.props.type,
allowTransparency: self.props.allowTransparency,
className: self.props.className,
frameBorder: self.props.frameBorder,
height: self.props.height,
key: url,
onLoad: self.props.onLoad.bind(self),
scrolling: self.props.scrolling,
src: self.state.isActive ? url : '',
style: self.props.styles,
width: self.props.width
};
<iframe {...iframeProps} />
這是在控制檯中拋出一個錯誤
拒絕顯示「https://twitter.com/ ....在一個框架,因爲祖先違反了以下內容安全政策指令:‘幀的祖先。自我'’
可以在任何請告訴我如何做這項工作?