Laravel 检查请求是否有集合

问题描述 投票:0回答:2

我想对我发布的每个请求运行一个 if 语句,如果有的话是一个集合,做一些不同的事情。

当我死转储时

$request->all
我有一个看起来像这样的数组;

  "_token" => "MMRFBAgyThsIHzITzT26Qwdp4L6HDV0JTPGs6h"
  "page_name" => "Travel"
  "heading" => "Travel Europe"
  "textarea" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostru ▶"
  "seo_title" => "travel"
  "seo_description" => "travel"
  "attribute_1" => "Food"
  "attribute_2" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor."
  "attribute_3" => "Hotels"
  "attribute_6" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor."
  "attribute_5" => "Events"
  "attribute_4" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor."
  "attribute_7" => null
  "attribute_8" => null
  "attribute_9" => UploadedFile {#233 ▶}

数据会有所不同,因此我无法编写任何静态内容,例如

$request->input('attribute_9')

这就是我目前处理未知请求属性的方式。

$input = $request->all();

foreach($input as $key=>$value) {

    if(strstr($key,'attribute_')) {
        $i = str_replace("attribute_", "", $key);


        if (!empty($value)) {   
            if ($value instanceof Illuminate\Http\UploadedFile) {
                dd('lets have a collection...');
            }

            Attribute::where('id', $i)->update(['value' => $value]);
        } else{
            Attribute::where('id', $i)->update(['value' => '']);
        }

    }
}

您可以看到我尝试使用

$value
检查
instanceOf
但没有成功。 if 语句永远不会为真,页面只会返回。

属性输入提交示例 -

@if($comp_attr['data_type'] == 'file')
   <div class="form-grp img-form" style="width: {{ $comp_attr['width'] }}%;">
    <label>Banner Image</label>
        <span class="img-hold">
            {{ $banner }}
        </span>
    <input type="{{ $comp_attr['field_type'] }}" name="attribute_{{ $comp_attr['id'] }}" />
   </div>
@else
    <div class="form-grp" style="width: {{ $comp_attr['width'] }}%;">
        <label>{{ $comp_attr['label'] }}</label>
        <input type="{{ $comp_attr['field_type'] }}" name="attribute_{{ $comp_attr['id'] }}" value="{{ $comp_attr['value'] }}" />
    </div>
@endif
php laravel laravel-5
2个回答
3
投票

我相信您正在努力获得

$_FILES

所以你可以使用

获取所有文件
$request->allFiles();

这将返回请求中的所有文件。然后您可以对其执行任何操作。

希望这有帮助


2
投票

而不是

name="attribute_{{ $comp_attr['id'] }}"

尝试

name="attributes[{{ $comp_attr['id'] }}]"

注意新的 's' ^ 以及

{{ }}

两侧的括号

通过使用括号,我们将其转换为关联数组,由blade变量作为键。

然后在 php 端你可以做这样的事情:

foreach($request->get('attributes') as $i => $value)
{
     ...
}
© www.soinside.com 2019 - 2024. All rights reserved.