This seems a duplicated question. You can find it in here. But I think it isn't 100% clear. So, I came across once with this blog post which is more clear.
From Google you have this:
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
</script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-12121212"
data-ad-slot="12121212"
data-ad-format="auto"/>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
Now, in your react app:
Include the following snippet in your index.html
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
Create your react component like:
import React from 'react';
export default class AdComponent extends React.Component {
componentDidMount () {
(window.adsbygoogle = window.adsbygoogle || []).push({});
}
render () {
return (
<ins className='adsbygoogle'
style={{ display: 'block' }}
data-ad-client='ca-pub-12121212'
data-ad-slot='12121212'
data-ad-format='auto' />
);
}
}
Now, to render it multiple times you can simply wrap the ins
html tag with an iterator like map
. However, I don't fully understand your need here.
If you want to show them all at once, then do your map like this.
If you want to randomise your ad, add a state to your component and a tick state so that it can re-render every X seconds. Check it in this SO answer
Notes:
- From you google sense add, rename
class
attribute to className
- Update
style
attribute to be wrapped like this: style={{ display: 'block' }}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…