Laravel验证ErrorException - htmlentities()期望参数1为字符串,给定数组

时间:2015-02-27 15:27:59

标签: php laravel-5

所以我是laravel 5的新手,刚开始编写我自己的应用程序。

当我只调用invoices.create控制器的路由时,视图生成就好了。

当我从invoices.store控制器重定向到同一个视图时,我收到了以下错误消息。

erorr message

我的控制器,看起来像这样。

controller

我猜测它与传递给控制器​​的参数冲突,看着消息。但我似乎无法找到错误以及如何解决它。

编辑: 这是观点......

@extends('app')

@section('content')

<div class="row">
    <div class="col-md-10 col-md-offset-1">
        <div class="panel panel-default">
            <div class="panel-heading">New Invoice</div>
            <div class="panel-body">
                @if ($errors->has())
                <div class="alert alert-danger">
                    @foreach ($errors->all() as $error)
                        {{ $error }}<br>        
                    @endforeach
                </div>
                @endif

                {!! Form::model(new App\Invoice, array('route' => array('invoices.store'))) !!}
                    <div class="form-group">
                        {!! Form::label('customer_id', 'Choose customer:') !!}
                        {!! Form::select('customer_id', array(null => ' - Please select customer - ') + $customers, $selected_customer, array('class'=>'form-control')) !!}
                    </div>
                    <div class="row" id="company_row">
                        <div class="col col-sm-6">
                            <div class="form-group">
                                {!! Form::label('number', 'Number:') !!}
                                {!! Form::text('number', $invoice_number, array('class'=>'form-control')) !!}
                            </div>
                        </div>
                        <div class="col col-sm-6">
                            <div class="form-group">
                                {!! Form::label('date', 'Date:') !!}
                                {!! Form::text('date', null, array('class'=>'form-control')) !!}
                            </div>
                        </div>
                    </div>
                    <div class="panel panel-default">
                        <div class="panel-heading">Invoice items</div>
                        <div class="panel-body">
                            <div class="table-responsive">
                                <table class="table table-bordered" id="table-invoice-items">
                                    <thead>
                                        <tr>
                                            <th>Amount</th>
                                            <th>Description</th>
                                            <th>Price</th>
                                            <th>Total</th>
                                            <th>VAT</th>
                                        </tr>
                                    </thead>
                                    <tbody>
                                        <tr>
                                            <td class="cell-width-5">{!! Form::text('items[amount][]', null, array('class'=>'form-control')) !!}</td>
                                            <td>{!! Form::text('items[description][]', null, array('class'=>'form-control')) !!}</td>
                                            <td class="cell-width-6">{!! Form::text('items[price][]', null, array('class'=>'form-control')) !!}</td>
                                            <td class="cell-width-5"></td>
                                            <td class="cell-width-12">{!! Form::text('items[vat][]', null, array('class'=>'form-control')) !!}</td>
                                            <td class="cell-center"><span class="glyphicon glyphicon-trash pointer" aria-hidden="true"></span></td>
                                        </tr>
                                    </tbody>
                                </table>
                            </div>
                            <button type="button" class="btn btn-primary" id="add-invoice-item">New Item</button>
                        </div>
                    </div>
                    <div class="form-group">
                        {!! Form::label('note', 'Note:') !!}
                        {!! Form::textarea('note', null, array('class'=>'form-control')) !!}
                    </div>
                    <div class="form-group">
                        {!! Form::submit('Create Invoice', ['class'=>'btn primary']) !!}
                    </div>
                {!! Form::close() !!}
            </div>
        </div>
    </div>
</div>

<script>
$(document).ready(function(){
    $("input#date").datepicker({format: 'dd-mm-yyyy'});

    $("button#add-invoice-item").click(function(){
        var table_row = $("table#table-invoice-items > tbody > tr:first").clone();
        table_row.find('input:text').val('');
        $("table#table-invoice-items > tbody > tr:last").after(table_row);
    });
});
</script>

@endsection

好的,所以我设法缩小了问题范围。它与数组有关,作为输入字段的名称,当我删除此表行时...错误消失了。 但是我该如何解决这个问题?

<tr>
    <td class="cell-width-5">{!! Form::text('items[amount][]', null, array('class'=>'form-control')) !!}</td>
    <td>{!! Form::text('items[description][]', null, array('class'=>'form-control')) !!}</td>
    <td class="cell-width-6">{!! Form::text('items[price][]', null, array('class'=>'form-control')) !!}</td>
    <td class="cell-width-5"></td>
    <td class="cell-width-12">{!! Form::text('items[vat][]', null, array('class'=>'form-control')) !!}</td>
    <td class="cell-center"><span class="glyphicon glyphicon-trash pointer" aria-hidden="true"></span></td>
</tr>

感谢任何帮助!

2 个答案:

答案 0 :(得分:4)

编辑:这是Laravel的表单构建器的已知问题:https://github.com/laravel/framework/issues/2243

它阻止您使用数组作为Form :: text()方法调用的name参数。我认为这与表单如何在HTML中为给定模型分配值有关。

我认为您必须为该部分编写基本的HTML表单。

答案 1 :(得分:1)

不是在表单字段名称中使用[1],而是指定一个整数{!! Form::text('items[amount][]', null, array('class'=>'form-control')) !!} 并增加。

例如,这个:

{!! Form::text('items[amount][1]', null, array('class'=>'form-control')) !!}

将是:

new

进一步阅读: https://mattstauffer.co/blog/form-array-validation-in-laravel-5-2#a-quick-introduction-to-html-form-arrays