网络抓取数据的传递
我目前正在编写一个应用程序,该应用程序将从几个不同的网站提取数据,然后传回我的应用程序,进行解析、格式化和显示。我一直遇到的问题是能够以图形方式传入并显示数据。我希望使用 HTML5 来做到这一点,并且我所有的抓取都是在 php 中设置的。当然,要在 HTML5 中绘图需要使用 JavaScript,而将我的 php 输出转换为 JavaScript 似乎很混乱。我是否缺少构建此解决方案的更好方法?
I'm currently writing an application that will extract data from a few different websites to be passed back to my app, parsed, formatted, and displayed. The problem I keep running into is being able to pass in and display the data in a graphical manner. I was hoping to use HTML5 to do this, and all of my scraping is set up in php. Of course, to draw in HTML5 requires using JavaScript, and getting my php output to JavaScript seems messy. Am I missing a better way to architect this solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我来说这似乎是一个好方法,和其他方法一样好,除了它不太向后兼容,最好在服务器端进行绘图
It seems like a good way to me, as good as any, except it's not very backwards compatible, it might be better to do the graphing server side
如果你想直接在 php 中制作图形,你可能需要考虑使用 GD或ImageMagick。
If you want to do graphics directly in php you may want to look at using GD or ImageMagick.