语义UI的搜索元素返回TypeError

时间:2018-11-07 17:30:26

标签: jquery semantic-ui

我正在尝试使用语义UI的搜索Using Different Response Fields功能。

当我尝试使用搜索时,我得到了:

enter image description here

而不是这个:

enter image description here

页面标题包含:

<!-- Semantic UI-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">

<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">

<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

<!-- Semantic UI-->
<script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>

我已经在页面正文中定义了搜索,包括可用于文档的脚本:

<script type="text/javascript">
$(document).ready(function(){
  console.log('ready');
  console.debug('steady');

  $('.ui.search')
    .search({
      apiSettings: {
        url: '//api.github.com/search/repositories?q={query}'
      },
      fields: {
        results : 'items',
        title   : 'name',
        url     : 'html_url'
      },
      minCharacters : 3
    });

});
</script>
<div class="ui search">
  <div class="ui left icon input">
    <input class="prompt" type="text" placeholder="Search GitHub">
    <i class="github icon"></i>
  </div>
</div>

在浏览器的控制台中,我得到一个错误:

  

TypeError:P.ajax不是函数[了解更多]

enter image description here

**编辑**

instructions之后,我经历了安装和构建语义UI的工作。

我将dist文件夹的内容移到了应用程序的public文件夹中,该文件夹现在类似于:

enter image description here

我修改了页面的引用以包括所需的组件:

<link rel="stylesheet" type="text/css" href="semantic.min.css">
<link rel="stylesheet" type="text/css" href="components/search.min.css">
<script src="semantic.min.js"></script>
<script src="components/search.min.js"></script>

现在我得到了另一个TypeError:

enter image description here

** /编辑**

我想念什么?

1 个答案:

答案 0 :(得分:0)

我使用的是jQuery的超薄版本:

<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

当我切换为使用常规版本时:

<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>

搜索按预期进行。