gpt4 book ai didi

javascript - Meteor 0.6.5.1 和 twitter typeahead.js - (如何)它工作?

转载 作者:行者123 更新时间:2023-11-28 01:58:14 25 4
gpt4 key购买 nike

我从 Twitter Bootstrap 2 切换到 Bootstrap 3,发现自己没有 typeahead,建议现在使用 Twitter typeahead.js。对应meteor package似乎是最新的 typeahead.js ,但可能已经因最新的 meteor 更新而过时了。对我来说,它无法正常工作。

有人知道如何在 Meteor 中运行 typeahead.js 或确认我只是使用错误吗?

从我的代码中,我得到了这个困惑的打字头格式:

messed up typeahead formatting

感谢您的任何提示!

typeahead.html

<head>
<title>typeahead</title>
</head>
<body>
{{> hello}}
</body>
<template name="hello">
<form class="form-inline" role="form">
<div class="form-group">
<input class="form-control" type="text" id="typeahead">
</div>
</form>
</template>

typeahead.js

if (Meteor.isClient) {
Template.hello.rendered = function () {
$('input#typeahead').typeahead({
name: 'accounts',
local: ['timtrueman', 'JakeHarding', 'vskarich']
});
};
}

最佳答案

我能够使用这里的答案让它工作 https://stackoverflow.com/a/18171568/1691147

关于如何在 meteor 中做到这一点。在渲染的函数中,填写 typeahead

    var items = [],
finalItems,
tags = Tags.find({}, {fields: {name: 1, submitted: 0}});
tags.forEach(function(tag){
items.push(tag.name);
});
finalItems = _.uniq(items)
$('#search').typeahead({
local: finalItems
});

然后,在 keyup 事件中执行

   $('.tt-query').css('background-color','#fff');
$('#search').removeClass('tt-query');

并在你的CSS中添加

.twitter-typeahead{
width:100%;
}

.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
margin-bottom: 0;
}

.tt-dropdown-menu {
min-width: 160px;
margin-top: 2px;
padding: 5px 0;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-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);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}

.tt-suggestion {
display: block;
padding: 3px 20px;
}

.tt-suggestion.tt-is-under-cursor {
color: #fff;
background-color: #0081c2;
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
}

.tt-suggestion.tt-is-under-cursor a {
color: #fff;
}

.tt-suggestion p {
margin: 0;
}

这很老套,但在 Typeahead 和 Bootstrap 3 能够很好地配合之前它会起作用。

关于javascript - Meteor 0.6.5.1 和 twitter typeahead.js - (如何)它工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18784745/

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