Laravel mix产生相对路径

时间:2017-05-05 23:34:04

标签: laravel laravel-mix

在制作时,要加载我使用的资产,例如:

<link href="{{ mix('/css/app.css') }}" rel="stylesheet">

并希望看到编译时:

<link href="https://example.com/css/app.083fd04ba374238b03b23e742c997718.css" rel="stylesheet">

但我只是看到相对路径:

<link href="/css/app.083fd04ba374238b03b23e742c997718.css" rel="stylesheet">

webpack.mix.js:

mix
  .js('resources/assets/js/app.js', 'public/js')
  .sass('resources/assets/sass/app.scss', 'public/css')
  .sass('resources/assets/sass/print.scss', 'public/css')
  .copy([
    'node_modules/bootstrap-sass/assets/fonts/bootstrap',
    'node_modules/font-awesome/fonts',
  ], 'public/fonts')
  .sourceMaps();

if (mix.config.inProduction) {
  mix
    .version()
    .disableNotifications();
} else {
    //
}

最新版本的Laravel(5.4.21)。使用nginx,在Ubuntu 16.04上强制使用https。不知道为什么路径不满,而是相对。

编辑:如果我尝试使用mix vs asset而没有https,我也会在本地看到相同的行为。协议在这里似乎并不重要。

4 个答案:

答案 0 :(得分:11)

处理此问题的最佳方法是使用asset()助手来添加您的APP_URL。

<script src="{{ asset(mix('css/app.css')) }}"></script>

答案 1 :(得分:1)

如果您查看source,那就是它的工作方式。你总是可以写自己的帮手。

您需要将其添加到helpers文件中。

use Illuminate\Support\Str;
use Illuminate\Support\HtmlString;

if (! function_exists('mixUrl')) {
    /**
     * Get the path to a versioned Mix file.
     *
     * @param  string  $path
     * @param  string  $manifestDirectory
     * @param  string  $baseUrl
     * @return \Illuminate\Support\HtmlString
     *
     * @throws \Exception
     */
    function mixUrl($path, $manifestDirectory = '', $baseUrl = null)
    {
        static $manifest;

        if (! starts_with($path, '/')) {
            $path = "/{$path}";
        }

        if ($manifestDirectory && ! starts_with($manifestDirectory, '/')) {
            $manifestDirectory = "/{$manifestDirectory}";
        }

        if (file_exists(public_path($manifestDirectory.'/hot'))) {
            return new HtmlString("//localhost:8080{$path}");
        }

        if (! $manifest) {
            if (! file_exists($manifestPath = public_path($manifestDirectory.'/mix-manifest.json'))) {
                throw new Exception('The Mix manifest does not exist.');
            }

            $manifest = json_decode(file_get_contents($manifestPath), true);
        }

        if (!is_null($baseUrl)){
            if (strlen($baseUrl) > 1 && Str::endsWith($baseUrl, '/')) {
                $baseUrl = substr($baseUrl, 0, -1);
            }
            return new HtmlString($baseUrl . $manifestDirectory . $manifest[$path]);
        }

        if (! array_key_exists($path, $manifest)) {
            throw new Exception(
                "Unable to locate Mix file: {$path}. Please check your ".
                'webpack.mix.js output paths and try again.'
            );
        }

        return new HtmlString($manifestDirectory.$manifest[$path]);
    }
}

从刀片中调用

<script src="{{ mixUrl('/css/app.css', '', 'http://example.com') }}"></script>

答案 2 :(得分:0)

最好的方法是使用 https://angular-svs3xe.stackblitz.io https://stackblitz.com/edit/angular-svs3xe 帮助程序。但是,还有另一种方法可以使用asset()url()帮助程序

secure_url()

<script src="{{ url(mix('css/app.css')) }}"></script>

答案 3 :(得分:-1)

这是我从laravel 5. *上的TwigExtension调用的函数,您可以执行一个辅助函数。

// use Illuminate\Foundation\Mix;

function mix_url($path, $manifestDirectory = ''){

    return asset(app(Mix::class)(...func_get_args()));
}

此外,您还需要在.env上定义ASSET_URL