将mongodb信息传递给html中的javascript函数

时间:2014-08-18 21:17:36

标签: node.js express bootstrap-typeahead twitter-typeahead

如何将我的mongodb数据传递到Twitter bootstrap Typeahead?

这是我使用typeahead的html文件。

<html>
<head>
<script type="text/javascript">
$(document).ready(function(){
    $('input.typeahead').typeahead({
      name: 'accounts',
      local: ['Audi', 'BMW', 'Bugatti', 'Ferrari', 'Ford', 'Lamborghini', 'Mercedes Benz', 'Porsche', 'Rolls-Royce', 'Volkswagen']
    });
});  
</script>
</head>
</html>

我的问题: - 在上面的函数中,如何将mongodb数组传递给上面的函数?

0 个答案:

没有答案