0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

laravelのjqueryでautocompleteを利用するとエラーになる

Posted at

動作環境

Laravel 6.20
php 8.0
ローカルPC開発
chrome

やりたいこと

  • laravelでテキストボックスで検索するときに、サジェストしてくれる機能を追加したい。
  • そこで、jqueryのautocompleteを利用して実装しようとしたがエラーが出ました。
    • laravelを利用しないで、webのサンプルをhtmlでコピペしてchromeで表示すると検索のサジェストの機能は問題なく表示されたので、laravelに起因するエラーだと考えられる状態。

エラーの内容

  • chromeの開発者コンソールで以下のようなエラーが発生しました。
jQuery.Deferred exception: $(...).autocomplete is not a function TypeError: $(...).autocomplete is not a function

Uncaught TypeError: $(...).autocomplete is not a function

エラー内容をwebで検索して調べると・・・

  <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
  <script src="https://code.jquery.com/jquery-3.6.0.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>

本当のエラーの原因

  • laravelのjs/app.jsのファイルがエラーの原因でした。
    • https://nebikatsu.com/7232.html/
    • js/app.jsを読み込むのを止めて解決しました。
    • 「app.jsを読み込むページによっては、
      手書きで書くJavascriptとバッティングして、Javascriptが動かなくなる」とのことです。
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?