Google Chrome 即时多功能框如何工作?

发布于 2024-10-16 21:21:05 字数 117 浏览 1 评论 0原文

Google Chrome 9 中的omnibox instant如何工作?
我启用了开发人员面板并进行了检查,但没有发现任何 XHR 被触发... Omnibar 是否从开发人员面板中隐藏了?

How does omnibox instant in Google Chrome 9 work ?
I enabled developer panel and checked, but didn't find any XHRs being fired... Is the Omnibar hidden from developer panel ?

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

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

发布评论

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

评论(1

(り薆情海 2024-10-23 21:21:05

这部分是用C++完成的,所以你不会在开发者面板中看到它;您可以使用 Google Codesearch for Chromium 查看 Chromium 源代码。感兴趣的可能是InstantControllerTemplateURLFetcher。这不是最容易遵循的代码,因为它是用异步风格编写的(即时位注册一个观察者,当获取建议 URL 时将调用该观察者)。

This part is done in C++, so you won't see it in the developer panel; you can use Google Codesearch for Chromium to view the Chromium source code. Of interest may be InstantController and TemplateURLFetcher. It's not the easiest code to follow, because it is written in the asynchronous style (the instant bits register an observer that gets invoked when the suggest URL has been fetched).

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