当我访问特定页面广告时,插页式广告会出现,但是当我再次访问该特定页面广告时,不会再出现。我使用的是Firebase admob。每次访问时都会打印此console.log。
showAd = () => {
if (advert.isLoaded()) {
console.log('hi')
advert.show();
}
}
render(){
return(
<View>
<NavigationEvents
onWillFocus={payload => this.showAd()}
/>
</View>
)