使用来自Ajax调用的数据加载typeahead.js

时间:2014-06-25 02:16:04

标签: javascript jquery ajax json twitter-typeahead

基本上我想要实现的是通过Ajax调用从jQuery加载数据(来自数据库)。 Ajax调用与脚本通信以加载JSON格式的数据并将其返回给jQuery。然后我想将这些数据用于typeahead.js。我已阅读this帖子并使用了以下代码:

$('.subject').typeahead({
    source: function(query, process) {
        return $.get(
            '/get/subjects',
            'uni=' + query,
            function(data) {
                return process(data);
            }
        );
    }
});

页面/get/subjects返回JSON,但是预先输入不起作用,没有错误。但是,它确实改变了我的页面布局,但没有结果!

由于

0 个答案:

没有答案