QR码图片慢速网站 - Laravel 5.2

时间:2017-10-19 09:41:26

标签: php laravel laravel-5.2 qr-code

我正在制作qr代码1000.如果需要时间,这不是问题。 。我在qrcode表中保留了一个URL。我检索qrcode图像而不保存到数据库中。我正在使用Simple QRcode Laravel库来生成qr代码。我的问题当我试图获得qrcode然后网站因为大量的qrcode而减速检索&一次生成。如何将qr代码保存到数据库中,这样当我检索它时,我将只从数据库中检索图像。提前谢谢。

我的刀片视图:

@foreach($qrcodes as $qrcode)
    <tr>
        <td> <img src="data:image/png;base64, {!! base64_encode(QrCode::format('png')->size(100)->generate($redirectedPage.$qrcode->id)) !!} "> </td>
        <td> <a href="data:image/png;base64, {!! base64_encode(QrCode::format('png')->size(100)->generate($redirectedPage.$qrcode->id)) !!} " class="btn btn-primary" download>{{ trans('common.download_button') }}</a> </td>
    </tr>                            
@endforeach

0 个答案:

没有答案