doumeng1897 2018-03-05 20:34
浏览 119
已采纳

Webpack Encore - 用PHP获取版本化文件

I installed Symfony 4 with Webpack Encore recently. I use some static assets to make a PDF with TCPDF. To do that, I used to get images with their path but with Webpack Encore versionning, filenames are different so I can't get images this way. Is there a solution to keep versionning and access these images in PHP ?

PHP :

$logourl = trim("../public/build/images/tst_noir.png");
$pdf->Image($logourl, 135, 10.8, 42, 0);

Webpack app.js :

require('../images/tst_noir.png');

Webpack-config.js :

const Encore = require('@symfony/webpack-encore');

Encore
.setOutputPath('public/build/')
.setPublicPath('http://localhost/xxx/public/build')
.setManifestKeyPrefix('build/')
.cleanupOutputBeforeBuild()
.enableSourceMaps(!Encore.isProduction())
.autoProvidejQuery()
.addEntry('app', './assets/js/app.js');

module.exports = Encore.getWebpackConfig();
  • 写回答

1条回答 默认 最新

  • dongyuandou2521 2018-03-05 21:39
    关注

    If you have the Symfony configuration for the assets setup for the use on a website, you can use the assets.packages package to fetch the final display-ready URLs for a file:

    use Symfony\Component\Asset\Package;
    use Symfony\Component\Asset\VersionStrategy\EmptyVersionStrategy;
    
    $package = new Package(new EmptyVersionStrategy());
    
    // Absolute path
    echo $package->getUrl('/image.png');
    // result: /image.png
    
    // Relative path
    echo $package->getUrl('image.png');
    // result: image.png
    

    Versioning and URL prefixes should also be handled if the Symfony & Webpack configuration (or setting up the component directly) has been put in place.

    // webpack.config.js
    if (Encore.isProduction()) {
        Encore.setPublicPath('https://my-cool-app.com.global.prod.fastly.net');
        Encore.setManifestKeyPrefix('build/');
    }
    

    Before Symfony 3.0, templating.helper.assets provided much the same functionality, but now you are more likely to use the framework.assets.json_manifest_path: config.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!