Laravel 5.4脚本加载问题

时间:2017-03-30 19:39:03

标签: javascript html laravel-5 blade mix

我正在研究我的第一个Laravel项目(5.4),实际上我不明白为什么我的js脚本不像我预期的那样工作。 我使用Mix和Blade:

// webpack.mix.js
let { mix } = require('laravel-mix').mix;

    // copy fonts and patterns
mix .copy('resources/assets/vendor/bootstrap/fonts', 'public/fonts')
    .copy('resources/assets/vendor/font-awesome/fonts', 'public/fonts')
    .copy('resources/assets/patterns', 'public/css/patterns')

    // compile scss and concatenate css files
    .sass('resources/assets/sass/app.scss', 'public/css')
    .styles([
        'resources/assets/vendor/bootstrap/css/bootstrap.css',
        'resources/assets/vendor/animate/animate.css'
        // ...
    ], 'public/css/vendor.css')

    // concatenate js files
    .js([
        'resources/assets/vendor/jquery/jquery-3.1.1.min.js',
        'resources/assets/vendor/bootstrap/js/bootstrap.js',
        'resources/assets/js/app.js'
        // ...
    ], 'public/js/app.js')
    .options({ processCssUrls: false }); // fix for path issue : https://github.com/almasaeed2010/AdminLTE/issues/1360

npm run dev赞美后看起来不错:

DONE  Compiled successfully in 6497ms                                                     4:20:57 PM

                                   Asset      Size  Chunks                    Chunk Names
  fonts/glyphicons-halflings-regular.ttf   45.4 kB          [emitted]         
                              /js/app.js    1.2 MB       0  [emitted]  [big]  /js/app
                       mix-manifest.json  66 bytes          [emitted]         
  fonts/glyphicons-halflings-regular.eot   20.1 kB          [emitted]         
fonts/glyphicons-halflings-regular.woff2     18 kB          [emitted]         
  fonts/glyphicons-halflings-regular.svg    109 kB          [emitted]         
 fonts/glyphicons-halflings-regular.woff   23.4 kB          [emitted]         
                            /css/app.css    178 kB       0  [emitted]         /js/app
           fonts/fontawesome-webfont.ttf    166 kB          [emitted]         
           fonts/fontawesome-webfont.svg    444 kB          [emitted]  [big]  
           fonts/fontawesome-webfont.eot    166 kB          [emitted]         
          fonts/fontawesome-webfont.woff     98 kB          [emitted]         
         fonts/fontawesome-webfont.woff2   77.2 kB          [emitted]         
                   fonts/FontAwesome.otf    135 kB          [emitted]         
         css/patterns/header-profile.png   5.88 kB          [emitted] 

CSS工作正常,bootstrap.js也有效,当我在/js/app.js内查看时,似乎一切都在里面。

这是我的诱惑:

{{-- app.blade.php--}}
<!DOCTYPE html>
<html lang="{{ config('app.locale', 'en') }}">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>@yield('title')</title>
    <link rel="stylesheet" href="{!! asset('css/vendor.css') !!}" />
    <link rel="stylesheet" href="{!! asset('css/app.css') !!}" />
</head>
<body>
    <!-- Main view  -->
    @yield('content')

    <script src="{!! asset('js/app.js') !!}" type="text/javascript"></script>

    @section('scripts')
    @show
</body>
</html>

当我想在一个孩子的脚本部分中添加一个脚本时,我的麻烦就开始了。

@extends('layouts.app')

@section('scripts')
    <script type="text/javascript">
        $(document).ready(function () {
            alert('test');
        });
    </script>
@endsection

如果没有加载jquery,我得到了Uncaught ReferenceError: $ is not defined

我不知道为什么,任何想法?

[注]
如果我替换 app.blade.php

,它就可以工作
<script src="{!! asset('js/app.js') !!}" type="text/javascript"></script>

with:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

3 个答案:

答案 0 :(得分:3)

我终于知道谁是有罪的:混合(或者我使用Mix的方式)

我错误地认为mix.jsmix.scripts功能相同。但mix.scripts仅合并和缩小文件,而mix.js也编译ECMAScript 2015和模块捆绑。我真的不知道为什么,但在我的情况下这是一个问题。

mix.js(['public/js/admin.js',
    'public/js/dashboard.js'], 'public/js');

替换为:

mix.scripts(['public/js/admin.js',
    'public/js/dashboard.js'], 'public/js/all.js');

查看更多:Laravel doc

答案 1 :(得分:1)

我遇到了类似的问题,问题是我第一次使用jQuery时,webpack生成的app.js文件尚未加载。

您可以进行简单的测试,看看是否有同样的问题。在您使用jQuery(引发$ error的代码行)的第一块代码中,将代码包装在此:

document.addEventListener("DOMContentLoaded", function(event) { 
 // Your jQuery code
});

一种解决方法是先在刀片主布局文件中加载app.js,但我相信它可以更好地完成。我对Laravel相当新,所以我还在搞清楚这些事情......

修改:

好的,我想我现在明白了如何正确地做到这一点:

  1. 在您的主刀片布局(在我的情况下为app.blade.php)中,在</body>标记之前的右下角,加载您的webpack脚本,您可能加载的所有其他外部脚本,最后添加一个产量脚本部分。
  2. 示例:

    <script src="/js/app.js"></script>
    <script src="other/scripts/that/you/need.js"></script>
    @yield('scripts')
    
    1. 在您需要jQuery代码的刀片模板中,您可以创建一个名为 scripts 的新部分,而不是直接在内容部分中添加它。
    2. 示例:

      @section('content')
      //Your view code
      @endsection
      
      @section('scripts')
      //Your jQuery code
      @endsection
      

      这样,你的jQuery代码在主布局加载了webpack javascript文件(加载jQuery)后加载。

答案 2 :(得分:0)

只需在您的刀片文件中包含如下所示的js文件,就像我的情况一样,包括放在public / js中的add-section.js

<script src="{{ asset('/js/add-section.js') }}"></script>
@yield('scripts')