我正在iframe中显示一个弹出窗口。在父正文中,我将加载程序显示为
class ListItem extends Component {
constructor(props) {
super(props);
this.state = {
test:this.props.test,
style:'' // take style into your state
};
}
componentWillMount(){
this.setState({style: this.props.style}) //set style
}
componentWillReceiveProps(newProps){
//called when you update style
if(newProps.style !== this.props.style){
this.setState({style: newProps.style})
}
}
render() {
return (
<View style={this.state.style}> //set style for views from state
// add your views here
</View>
);
}
}
如何通过访问父实体隐藏此加载器,我知道可以通过
访问父实体$('body').loader('show');
这对我有用:
window.parent.document.body
但是我需要知道什么是最好的方法?
尝试:
$('.loading-mask', window.parent.document.body).css('display', 'none');
但没有运气,有什么想法吗?