作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 typeahead.js。
当我从 apiController 获取数据时,它看起来像这样:
["JobName1", "JobName1", "akhsfkh"]
当它通过这段代码时:
$(function() {
var projectNumbers = $.getJSON("api/Project/GetAllNumbers")
.done(function(result) {
console.log(result);
return result; // ["JobName1", "JobName1", "akhsfkh"] is here
})
.fail(function(jqXHR, textStatus, err) {
alert('Error: ' + err);
});
var substringMatcher = function(strs) {
return function findMatches(q, cb) {
var matches, substrRegex;
// an array that will be populated with substring matches
matches = [];
// regex used to determine if a string contains the substring `q`
substrRegex = new RegExp(q, 'i');
// iterate through the pool of strings and for any string that
// contains the substring `q`, add it to the `matches` array
$.each(strs, function(i, str) {
if (substrRegex.test(str)) {
// the typeahead jQuery plugin expects suggestions to a
// JavaScript object, refer to typeahead docs for more info
matches.push({ value: str });
}
});
cb(matches);
};
};
$('#jobNumber').typeahead({
hint: true,
minLength: 2,
highlight: true,
},
{
name: 'projects',
source: substringMatcher(projectNumbers.serializeArray()),
});
});
我的输入框显示前面的类型但可用数据是:
JobName1, JobName1, akhsfkh
substringMatcher 函数没有改变它。
有什么建议吗?
最佳答案
您必须存储结果并在回调中完成其余的工作。
var projectNumbers;
$.getJSON("http://jsbin.com/heyobi/1.json")
.done(function (result) {
projectNumbers = result;
initTypeahead();
})
.fail(function (jqXHR, textStatus, err) {
alert('Error: ' + err);
});
var substringMatcher = function (strs) {
......
});
function initTypeahead() {
$('.typeahead').typeahead({
hint: true,
minLength: 2,
highlight: true,
}, {
name: 'projects',
source: substringMatcher(projectNumbers),
});
}
这是一个DEMO
关于typeahead.js - TypeaheadJS 方法不将数组转换为值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29145689/
我正在使用 typeahead.js。 当我从 apiController 获取数据时,它看起来像这样: ["JobName1", "JobName1", "akhsfkh"] 当它通过这段代码时:
我正在测试就地编辑模块,并且我的规范文件中有此内容: if (typeof module !== 'undefined' && module.exports) { var jsdom = re
我是一名优秀的程序员,十分优秀!