gpt4 book ai didi

jquery - 让 typeahead.js 处理动态内容、Bottle 和 Hogan

转载 作者:行者123 更新时间:2023-12-01 04:50:34 25 4
gpt4 key购买 nike

预期行为

搜索字段应显示类似“Twitter 开源项目”示例的结果:

http://twitter.github.io/typeahead.js/examples/

当前行为

  • 当我输入搜索文本时,没有出现下拉菜单。
  • Firebug 中没有错误。
  • 所有必需的“容器”div 似乎都已加载(但通过 display:none 隐藏)在搜索字段下方。
  • 不会生成或显示结果。
  • Firebug > Net 加载内容时确实显示 json 文件的 GET 请求,并且内容在响应选项卡中可用。

疑难解答

动态内容

网站内容通过 getJSON() 动态加载。

Head 中包含 Hogan 和 typeahead 脚本

<script src="https://path/to/typeahead.min.js"></script>
<script src="https://path/to/hogan-2.0.0.js"></script>

Bottle 和霍根

我使用 Bottle,它也使用 Hogan 使用的默认占位符,即 {{value here}}

因此,在 Hogan.js 中,我将默认分隔符更改为:

otag = '{{',
ctag = '}}';

至:

otag = '[[',
ctag = ']]';

函数

我创建了一个在加载动态内容后运行的函数:

<script>
function getTypeAheadReady() {
$('.example-twitter-oss .typeahead').typeahead({
name: 'mygreatsearch',
valueKey: 'my_field_one',
prefetch: 'https://path/to/static/courses.json',
template: [
'<p class="my-field-1">[[my_field_one]]</p>',
'<p class="my-field-2">[[my_field_two]]</p>',
'<p class="my-field-3">[[my_field_three]]</p>'
].join(''),
engine: Hogan
})
}
</script>

通话

$("#content").html("");
$("#content").append(results.content);
getTypeAheadReady(); // re-initialise typeahead.js functionality for search

JSON

我的 JSON 文件似乎是正确的:

[
{ "my_field_one": "val1", "my_field_two": "val2", "my_field_three": "val3". "tokens":["something"] },
{ "my_field_one": "val4", "my_field_two": "val5", "my_field_three": "val6", "tokens":["somethingelse"] },
]

它位于https://path/to/static/courses.json,我可以直接在浏览器中访问它。

HTML(从数据库加载)

<div class="example example-twitter-oss">
<div class="demo">
<input class="typeahead" type="text" placeholder="Placeholder 'text'">
</div>
</div>

CSS

CSS 似乎是正确的:

.tt-dropdown-menu {
text-align: left;
}

.title,
.my-field-1 {
font-family: Prociono;
}

.title {
margin: 20px 0 0 0;
font-size: 64px;
}

.example {
padding: 30px 0;
}

.course-title {
margin: 20px 0;
font-size: 32px;
}

.demo {
position: relative;
*z-index: 1;
margin: 50px 0;
}

.typeahead,
.tt-query,
.tt-hint {
width: 396px;
height: 30px;
padding: 8px 12px;
font-size: 24px;
line-height: 30px;
border: 2px solid #ccc;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
outline: none;
}

.typeahead {
background-color: #fff;
}

.typeahead:focus {
border: 2px solid #0097cf;
}

.tt-query {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
color: #999
}

.tt-dropdown-menu {
width: 422px;
margin-top: 12px;
padding: 8px 0;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
padding: 3px 20px;
font-size: 18px;
line-height: 24px;
}

.tt-suggestion.tt-is-under-cursor {
color: #fff;
background-color: #0097cf;

}

.tt-suggestion p {
margin: 0;
}

.example-twitter-oss .tt-suggestion {
padding: 8px 20px;
}

.example-twitter-oss .tt-suggestion + .tt-suggestion {
border-top: 1px solid #ccc;
}

.example-twitter-oss .my-field-2 {
float: right;
font-style: italic;
}

.example-twitter-oss .my-field-1 {
font-weight: bold;
}

.example-twitter-oss .my-field-3 {
font-size: 14px;
}

最佳答案

解决方案:

.json 文件中第二个对象后面的杂散逗号。

关于jquery - 让 typeahead.js 处理动态内容、Bottle 和 Hogan,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20651938/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com