TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Making AJAX applications crawlable

64 点作者 pietrofmaggi超过 14 年前

5 条评论

pseudonym超过 14 年前
Considering that it's Google, I'm honestly surprised they haven't created a crawler application that can execute the javascript on a given page and re-parse it based on the new layout.<p>You wouldn't think it would be that hard, either-- take Chrome, remove UI, add crawler. Chrome's already got the functionality in "Inspect Element" to show dynamically-created content.
评论 #1747373 未加载
评论 #1747293 未加载
评论 #1747161 未加载
评论 #1747846 未加载
wanderr超过 14 年前
I wish they would make it possible to do the whole bit with "pretty" urls. Example:<p>Users go to: /#/abc Google goes to /abc and they both see the same content. Obviously you'd need some way to tell Google that your site follows this scheme but then you don't have to change all of your URLs and existing external links to pages on your site would accumulate page rank appropriately.
timinman超过 14 年前
I've been thinking about writing a blog article on this subject. Basically AJAX is like Chocolate - it's really tempting, but eating too much or for the wrong reasons is not a good idea.<p>I've just rewritten one of my sites which used AJAX to load content on a single index page. I've now made sure every unique resource has a unique url. This is good for browser navigation, good for Google, and good for promoting a single resource on a service like Twitter. Now my site which looked like 1 page to Google is almost 500 pages.
voxxit超过 14 年前
I just recently implemented this. The thing I'm having trouble with is the fact that they don't limit the amount of time (or specify a limit, rather) which is acceptable to make the crawler wait. For instance, what if it take 20 seconds to load an acceptable amount of JavaScript-created HTML?
ajennings超过 14 年前
Does anyone know when this went live? I'm assuming it is live already.<p>I see it was proposed in Oct 2009: <a href="http://googlewebmastercentral.blogspot.com/2009/10/proposal-for-making-ajax-crawlable.html" rel="nofollow">http://googlewebmastercentral.blogspot.com/2009/10/proposal-...</a>