【问题标题】:Issue with QrCode In Laravel, what the problem?Laravel 中的二维码问题,有什么问题?
【发布时间】:2019-09-08 22:37:23
【问题描述】:

我使用这个 Laravel 包插入一个二维码:

https://www.tutsmake.com/laravel-php-simple-qr-codes-generate/

当我执行这条路线时,我的 QrCode 出现在网页中:

Route::get('qrcode', function () {
 return QrCode::size(300)
                 ->backgroundColor(255,55,0)
                 ->generate('A simple example of QR code');
 });

但我需要的是在我的刀片中插入相同的二维码,所以我尝试了这个代码:

 <body>
{{ QrCode::size(300)->backgroundColor(255,55,0)->generate('A simple example of QR code')}}
 </body>

我没有二维码,但有响应(SVG 文本)

【问题讨论】:

    标签: php laravel


    【解决方案1】:

    你需要使用

        {!! QrCode::size(300)->backgroundColor(255,55,0)->generate('test'); !!}
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-06-06
      • 2016-05-25
      相关资源
      最近更新 更多