从网页创建 RSS feed/显示外部网页的更改

发布于 2024-12-01 05:16:19 字数 258 浏览 0 评论 0原文

我正在创建一个网络应用程序,将从学校网站获取作业。 我一直在使用 dapper 创建 rss feed 为网站创建 rss feed,将其转换为 html,然后将其放入我网站上的 Iframe 中。 我认为必须有更好的方法来做到这一点。 我不关心这会用什么语言来完成,但我更喜欢在客户端使用 php 或 javascript 来完成。 我的 php 水平是中级,不太擅长 java 脚本。 如果您可以提供一些代码的详细解释,那就太好了。 我也获得了学校的法律许可,这将是第一个上线以获得作业的学校。

I am Creating a web application that will get homework from schools website.
I have been creating rss feeds for the website using dapper Creating an rss feed converting that into html and then putting that into an Iframe on my website.
I think there has to be a better way to do this.
I don't care what language this would be done in but i would prefer to do it client-side with php or javascript.
I'm intermidiete level php and not so good at java script.
If you could provide detailed explanation with some code that would be great.
also I have legal permission from my school which will be the first for this to go live to get the homework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

童话 2024-12-08 05:16:19

我假设您要创建一个 php 应用程序来从外部站点(已经有特定的 url)检索 rss。嗯,我认为最好首先在源应用程序/外部站点构建一个公共 API,以获得更多多媒体支持。

但是,如果您直接将 xml 格式解析为 html 没有问题,那么您可以使用 cURL 代替 iFrame(或者如果您的 php 中没有安装 cURL,您可以修改 lil 位并使用我的 代理库,一个 PHP 类,使您能够通过打开套接字使用常规 HTTP 请求调用内部和外部站点连接到遥控器主机,最初写为 Codeigniter Library。)

这样,呈现 html 视图/页面将比通过 iFrame 处理它更容易。

I'm assuming you are about create an php application to retrieve the rss from external site (which already have a specific url). Well, i think its better to build a public API first at the source app/external site, to get more multimedia support.

But if you're have no problem with parsing an xml format into html directly, then you can use cURL instead iFrame(or if you didnt have cURL installed in your php, you can modify lil bit and use my Proxy Library,a PHP class which enables you to make call to internal and external site with general HTTP request by opening a socket connection to the remote host, originally writen as Codeigniter Library.)

That way, it will be easier to presenting a html view/page rather than proccess it via iFrame.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文