gpt4 book ai didi

php - Laravel collectivehtml 安全路由或 url

转载 作者:可可西里 更新时间:2023-11-01 12:36:48 25 4
gpt4 key购买 nike

在我的 View 页面中,我有这条路线:

{!! Form::open(['url' => 'forumcomment/' . $forum->slug, 'files'=>false, 'id' => 'qw-commentform' ,'class' => 'qt-clearfix'])   !!}

<hr class="qt-spacer-s"><div class="input-field">
{!! Form::textarea('comment', null, ['class'=>'materialize-textarea', 'id'=>'my-editor', 'required'=>'required','aria-required'=>true]) !!}
<label for="comment" class="">Comment*</label></div>
<hr class="qt-spacer-s">
{!! Form::submit('Post Comment', array( 'class'=>'qt-btn qt-btn-primary qt-btn-xl' )) !!}
{!! Form::close() !!}

获取混合内容错误如何获取安全路由?

最佳答案

将此添加到 AppServiceProviderboot 方法中。这会在 local 开发时通过 http 加载所有内容,在 production

时通过 https 加载所有内容
$this->app['request']->server->set('HTTPS', $this->app->environment() != 'local');

并始终在生产环境中将您的环境更改为production

关于php - Laravel collectivehtml 安全路由或 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45779637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com