Quora 中的实时前缀匹配和自动完成

发布于 2024-12-10 11:30:04 字数 82 浏览 0 评论 0原文

Quora 中如何实现具有前缀匹配的实时自动完成功能?

由于Solr和Sphinx不支持实时更新,那么为了支持实时更新做了哪些改变呢?

How is real time autocomplete with prefix matching implemented in Quora ?

Since Solr and Sphinx doesn't support real-time updating so what changes were made to support real time updating?

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

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

发布评论

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

评论(1

黄昏下泛黄的笔记 2024-12-17 11:30:04

看起来它是使用 javascript 和 jquery 完成的。我从 Quora 主页上的缩小脚本中抓取了几行关键行,我认为这些行支持了这一理论:

这是对提供 JSON 数据的资源的 ajax 调用:

$.ajax({type:"GET",url:this.resultsQueryPath,dataType:"json",data:a,success:this.fnbind(ƒ(a){this.ajaxCallback(a)}),error:this.fnbind(ƒ(a,b,c){console.log(b,c),this.requestOutstanding=!1,this.$("#@results_shell").html("Could not retrieve results: "+b)})})}

请注意,成功的结果被放入“a”变量中。然后,稍后这是基于“question_box”元素的按键的自动完成,该元素是从“a”的父元素完成的,

this.$ ("#@item input.question_box").keydown (ƒ (b) {
if (b.keyCode==9&&!b.shiftKey)for (var c=e.getLiveDomId (a.cid),d=a.parent ().orderedVisibleChildren (),f\^M=0;f<d.length-1;++f)if (c==d [f]) {
$ (this).blur (),$ ("#"+d [f+1]+" input.question_box").focus ();return!1}
})

我认为这是无可争议的,但有未缩小的脚本进行比较仍然很好。例如,我看不到 resultsQueryPath 来自哪里(我无法找到它的来源,可能是故意混淆的)。

Looks like it's done using javascript and jquery. I grabbed a few key lines from the minified script on the Quora homepage that I think support this theory:

Here's an ajax call to a resource providing JSON data:

$.ajax({type:"GET",url:this.resultsQueryPath,dataType:"json",data:a,success:this.fnbind(ƒ(a){this.ajaxCallback(a)}),error:this.fnbind(ƒ(a,b,c){console.log(b,c),this.requestOutstanding=!1,this.$("#@results_shell").html("Could not retrieve results: "+b)})})}

note that the successful result gets put into the "a" variable. Then later here's the autocompletion based on the keydown of the "question_box" element which is completing from the parent of "a"

this.$ ("#@item input.question_box").keydown (ƒ (b) {
if (b.keyCode==9&&!b.shiftKey)for (var c=e.getLiveDomId (a.cid),d=a.parent ().orderedVisibleChildren (),f\^M=0;f<d.length-1;++f)if (c==d [f]) {
$ (this).blur (),$ ("#"+d [f+1]+" input.question_box").focus ();return!1}
})

I think this is pretty incontrovertible, but it would still be nice to have the un-minified script to compare. For instance I can't see where resultsQueryPath comes from (I can't locate it's source, may be intentionally obfuscated).

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