コンソールのエラー
Uncaught Error: Cannot find module './ajaxlike.js' at webpackMissingModule (app.js:49826) at Object../resources/js/app.js (app.js:49826) at __webpack_require__ (app.js:20) at Object.0 (app.js:49962) at __webpack_require__ (app.js:20) at app.js:84 at app.js:87
コンソールに上記のエラーが出てきます。
どのようなエラーなのでしょうか。
ご回答お願いします。
app.js
require('./bootstrap'); require('./ajaxlike.js');
_ajaxlike.js
$(function () { var like = $('.js-like-toggle'); var likeRecipeId; like.on('click', function () { var $this = $(this); likeRecipeId = $this.data('recipeid'); $.ajax({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, url: '/ajaxlike', type: 'POST', data: { 'recipe_id': likeRecipeId }, }) .done(function (data) { $this.toggleClass('loved'); $this.next('.likesCount').html(data.RecipeLikesCount); }) .fail(function (data, xhr, err) { console.log('エラー'); console.log(err); console.log(xhr); }); return false; }); });
あなたの回答
tips
プレビュー