如何构建 Oa_zones 数组以在 Rails 中使用 OpenX 全页调用?
我在 Rails 中使用 OpenX 投放广告。要正确使用 OpenX 全页调用,您需要设置 Oa_zones[]
数组,否则将请求所有可用广告(但永远不会使用)。
这些是必要的部分:
- 构建一系列区域。理想情况下,可以在任何部分添加区域,因此需要在整个视图中都可以访问该阵列。
- 输出整页调用链接,即。
delivery/spcjs.php?id=1&block=1
- 输出区域
问题是,在构建区域数组(并在 JavaScript 中实例化)之前,无法加载完整页面调用脚本。同时,在渲染整个视图之前无法构建区域数组。
I'm serving ads using OpenX within Rails. To correctly use the OpenX full page invocation you need to set Oa_zones[]
array, otherwise all available ads are requested (but will never be used).
These are the necessary pieces:
- Build an array of zones. Ideally zones could be added in any partial, so working with this array needs to be accessible throughout the view.
- Output full page invocation link ie.
delivery/spcjs.php?id=1&block=1
- Output zones
The problem is, the full page invocation script can't be loaded until the zone array is built (and instantiated in JavaScript). At the same time, the zone array can't be built until the entire view has been rendered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://blog.openx.org/12/faster -page-load-times-happier-users/
那里有一个页尾 (eop) 示例 - 可以对其进行修改以使用 SPC 方法。这将允许您最后输出所有与广告相关的内容,然后将横幅输出重新定位到正确的位置
http://blog.openx.org/12/faster-page-load-times-happier-users/
There is an End Of Page (eop) example there - it could be modified to use the SPC method. This would allow you to output all ad-related content last, and then re-position the banner Output into the correct spots