我想用Facebook的reactjs框架(JSX)构建一个项目,但考虑到它的呈现方式,我如何在发布者的Doubleclick中使用它?
如果我触发adsense / urchin,如何告诉React不要更改/更新这些项目?
我可以使用替代adwords脚本/界面吗?
我想用Facebook的reactjs框架(JSX)构建一个项目,但考虑到它的呈现方式,我如何在发布者的Doubleclick中使用它?
如果我触发adsense / urchin,如何告诉React不要更改/更新这些项目?
我可以使用替代adwords脚本/界面吗?
这是一个处理显示广告的简单组件,并考虑到了这一点 可见性最佳实践。 (谢谢 Tracker1 对于这里的评论,这极大地帮助了我把它们放在一起。)
import React from 'react';
import Waypoint from 'react-waypoint';
let instance = 0;
class Ads extends React.Component {
static propTypes = {
id: React.PropTypes.string,
width: React.PropTypes.number.isRequired,
height: React.PropTypes.number.isRequired,
adslot: React.PropTypes.string.isRequired
}
constructor() {
this.__id = 'ads-instance-' + ++instance;
this.displayAd = this.displayAd.bind(this);
}
get id() {
return this.props.id || this.__id;
}
componentDidMount() {
googletag.cmd.push(function() {
// Define the ad slot
googletag
.defineSlot(
this.props.adslot,
[this.props.width, this.props.height],
this.id
)
.addService(googletag.pubads());
// Start ad fetching
googletag.enableServices();
});
}
render() {
return (
<div style={{width:this.props.width, height:this.props.height}}>
<Waypoint onEnter={this.displayAd} />
<div id={this.id}></div>
</div>
);
}
displayAd() {
const id = this.id;
googletag.cmd.push(function() {
googletag.display(id);
});
}
}
export default Ads;
我已经使用react-waypoint来确保正确的可见性(在用户看到它们之前不加载广告)。当航点在用户向下滚动到视口的底部时,displayAd()会显示广告。偏移量可以增强,但希望这将是一个很好的起点,为您提供一般的想法。
如果您在一个页面上有多个广告位,则可以使用唯一ID代替 #ad-container
。
(当我有一个jsx示例时,会用这个答案来清理这个答案,现在...)
感谢freenode #reactjs中的rcs:
rcs> tracker1: componentDidMount and make sure
you&aposre not throwing it away when you don&apost mean to
tracker1> rcs: so use componentDidMount for adsense/dfp
binding, and simply don&apost change the render output?
rcs> tracker1: Yeah. Your render should write out the
<ins class="adbygoogle" data-analytics-uacct ..... >
piece, and you should fire off the adsbygoogle.push in
componentDidMount
tracker1> cool... didn&apost think it would be that easy for
some reason...
rcs> tracker1: Or for dfp, handle the defineAdSlot in CDM,
and googletag.pubads().refresh() on something that fires
after they&aposre all written out.
rcs> The thing that will trip you up is if you&aposre firing
things that make React thing that written node needs to get
removed and replaced, instead of moved, etc.
rcs> But that shouldn&apost be a primary worry -- just something
to keep in the back of your head if you&aposre seeing more
impressions/ad loads than you should be.
tracker1> they&aposll only change on a navigation/route change
rcs> Keep in mind that adsense TOS is vague on ajax page loads.
rcs> Or &aposclient side&apos page loads.
(固定)