首页 > 解决方案 > 使用 Infinite Scroll 将广告放入 React SPA

问题描述

我有一个 React Single Page Web App,它看起来像一个非常简化的酒店/航班搜索页面。用户选择标签作为过滤器,过滤后的结果以无限滚动的方式显示。Whenever a filter is selected or user scrolls to the bottom, SPA fetches data from my backend server, and the React App's states is changed, thus updating the display. 我的 React 静态页面也由我的后端提供。

我正在考虑在每 10 个左右的结果之间添加一个广告。

但是,我主要担心的是,由于我只有一个 HTML 文件(因为一切都由 React 处理),因此广告展示次数的方式可能会被错误地计算。或者更糟糕的是,我的网站可能没有资格展示广告。

谁能给我一些建议?非常感谢!

标签: reactjsfrontendadsinfinite-scroll

解决方案


推荐阅读