Laravel 8 HTML 实体编码
2021-06-28 17:01 更新
默认情况下, Blade (以及 Laravel 的 e
辅助函数)将会对 HTML 实体进行双重编码。如果您想要禁用此举,您可以在 AppServiceProvider
中的 boot
方法中调用 Blade::withoutDoubleEncoding
方法:
namespace App\Providers;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* 驱动应用服务。
*
* @return void
*/
public function boot()
{
Blade::withoutDoubleEncoding();
}
}
以上内容是否对您有帮助:
更多建议: