第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在 laravel 7 中找不到類 'SimpleSoftwareIO\QrCode\QrCode

在 laravel 7 中找不到類 'SimpleSoftwareIO\QrCode\QrCode

PHP
肥皂起泡泡 2023-05-26 09:57:45
我的 php 版本是 7.4,laravel 版本是 7.0'providers' => [SimpleSoftwareIO\QrCode\QrCodeServiceProvider::class,],別名'aliases' => ['QrCode' => SimpleSoftwareIO\QrCode\Facades\QrCode::class,],在我的 composer.json 文件中"require": {? ? "php": "^7.2.5",? ? "fideloper/proxy": "^4.2",? ? "fruitcake/laravel-cors": "^1.0",? ? "guzzlehttp/guzzle": "^6.3",? ? "laravel/framework": "^7.0",? ? "laravel/tinker": "^2.0",? ? "simplesoftwareio/simple-qrcode": "^3.0"},添加別名后,提供者無法在 laravel 根路徑中運(yùn)行任何命令,它會(huì)顯示如下錯(cuò)誤In ProviderRepository.php line 208: Class 'SimpleSoftwareIO\QrCode\QrCodeServiceProvider' not foundPHP拉維
查看完整描述

5 回答

?
尚方寶劍之說

TA貢獻(xiàn)1788條經(jīng)驗(yàn) 獲得超4個(gè)贊

我使用 Laravel7 并找到了解決方案。安裝 QR“simplesoftwareio/simple-qrcode”后:“^3.0”

  1. (不要在 config/app.php 中添加這個(gè))'providers' 和 'aliases' 在 config/app.php

#'providers' => [SimpleSoftwareIO\QrCode\QrCodeServiceProvider::class,],
#'aliases' => ['QrCode' => SimpleSoftwareIO\QrCode\Facades\QrCode::class,],
  1. 嘗試在刀片模板 test.blade.php 中添加 qr

{!! QrCode::size(250)->generate('www.google.com'); !!}
  1. 它對(duì)我有用


查看完整回答
反對(duì) 回復(fù) 2023-05-26
?
千巷貓影

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊

config\app.php在這樣的更新下:

供應(yīng)商:

SimpleSoftwareIO\QrCode\ServiceProvider::class,

別名:

'QrCode' => SimpleSoftwareIO\QrCode\Facade::class,

或者刪除此提供程序和 .


查看完整回答
反對(duì) 回復(fù) 2023-05-26
?
幕布斯7119047

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊

沒有一個(gè)答案對(duì)我有用。以下是我如何使用 PHP8 在 Laravel 9 上修復(fù)它。

首先,我們必須安裝 PHP GD 庫(kù)。

sudo apt-get install php-gd

安裝 Simple QRcodde 版本 4 或更高版本。

composer require simplesoftwareio/simple-qrcode "~4" --with-all-dependencies

無需更改 config/app.php。

我們可以簡(jiǎn)單地在刀片視圖文件上使用它:

{!! QrCode::size(250)->generate('mailto:SampathPerera@hotmail.com'); !!}


查看完整回答
反對(duì) 回復(fù) 2023-05-26
?
白豬掌柜的

TA貢獻(xiàn)1893條經(jīng)驗(yàn) 獲得超10個(gè)贊

首先使用此命令安裝作曲家


composer require simplesoftwareio/simple-qrcode

在您的 web.php 文件中添加以下內(nèi)容


? ? Route::get('qr-code-g', function () {

? ? \QrCode::size(500)

? ? ? ? ? ? ->format('png')

? ? ? ? ? ? ->generate('www.google.com', public_path('images/qrcode.png'));

return view('qrCode');

});

在名為qrcode.blade.php的刀片文件中必須如下所示


<!DOCTYPE html>

<html>

? ? <head>

? ? ? ? <title>QR code Generator</title>

? ? </head>

<body>

? ? <div class="visible-print text-center">

? ? ? ? <h1>Laravel 7 - QR Code Generator Example</h1>?

? ? ? ? {!! QrCode::size(250)->generate('www.google.com'); !!}?

? ? </div>

</body>

</html>

使用 laravel 7 時(shí)無需在config/app.php中添加別名和提供者


需要運(yùn)行以下命令來安裝 imagemagick


sudo apt-get update


sudo apt-get install -y imagemagick php-imagick

您可以檢查安裝以運(yùn)行命令


php -m | grep imagick

如果安裝成功,會(huì)顯示如下


imagick

然后,需要重新啟動(dòng)您的 apache 服務(wù)器或重新啟動(dòng)您的系統(tǒng)它會(huì)正常工作。


查看完整回答
反對(duì) 回復(fù) 2023-05-26
?
紫衣仙女

TA貢獻(xiàn)1839條經(jīng)驗(yàn) 獲得超15個(gè)贊

在命令行上執(zhí)行composer dump-autoload,你可以從別名調(diào)用\QrCode::method()



查看完整回答
反對(duì) 回復(fù) 2023-05-26
  • 5 回答
  • 0 關(guān)注
  • 539 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)