Typeahead.js预取选项不起作用

时间:2013-08-08 14:11:18

标签: javascript typeahead.js

我无法在preaetch.js中使用prefetch选项。本地数据工作正常。以前发布的问题的答案表明缓存可能是一个问题,但我已将ttl设置为0并且正在Firefox和Chrome中以隐私浏览模式进行测试。我错过了什么?

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" type="text/css" href="http://twitter.github.com/typeahead.js/releases/latest/typeahead.css">
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://twitter.github.com/typeahead.js/releases/latest/typeahead.js"></script>
</head>

<script type="text/javascript">
$(document).ready(function(){
  $('#searchText').typeahead([
    {
      name: 'terms',
      //local: ["United States", "Canada"],
      prefetch: 'http://twitter.github.io/typeahead.js/data/countries.json',
      ttl: 0
      }
    ]);
  });
</script>

<body>
<div class="container">
  <input class="typeahead" type="text" id="searchText">
</div>
</body>

</html>

1 个答案:

答案 0 :(得分:1)

当某些内容“无效”时,您应该始终查看console(Firebug / Chrome开发工具),这是您与JS合作时最好的朋友。

在这种情况下,prefetch不起作用。但是Github不允许你从不同的域中获取json。如果您检查控制台,您将看到此错误:

XMLHttpRequest cannot load http://twitter.github.io/typeahead.js/data/countries.json. Origin http://yourdomain is not allowed by Access-Control-Allow-Origin.

因此,如果您希望让此示例在本地运行,您应该下载该JSON文件并在本地设置它,然后更改URL有点像:

$(document).ready(function(){
    $('#searchText').typeahead({
        name: 'terms',
        prefetch: '/data/countries.json', // go to http//yourdomain/data/countries to make sure the path is correct
        ttl: 0
    });
});

希望它有所帮助。