drrc61668568 2018-10-25 22:55
浏览 79
已采纳

为什么在使用模态编辑数据时,更改所有ID?

Why are all ids are called when editing on one number

Controller

public function update(Request $request, $id)
{
    $spent_time = SpentTime::find($id);
    $plan = $spent_time->plan;

    $total_spent_times = $plan->spent_times()->where('task_category', $spent_time->task_category)->sum('spent_time');
    $request['spent_time'] = (int)$total_spent_times + (int)$request->get('daily_spent_time');

    $total_percentage = $plan->spent_times()->where('task_category', $spent_time->task_category)->sum('percentage');
    $request['percentage'] = (int)$total_percentage + (int)$request->get('daily_percentage');
    $spent_time->update($request->all());

    return redirect()->route('real.index', compact('spent_time','plan','total_spent_time','total_percentage'));
}

index.blade.php

<td>
  <a href="" class="edit_real" data-toggle="modal" data-target="#edit_real-{{$spent_time->plan_id}}">
      {{$spent_time->plan->user_story}}  
  </a>
     @include('reals._form')
</td>

_form.blade.php

<div class="modal fade" id="edit_real-{{$spent_time->plan_id}}" role="dialog" >
<div class="modal-dialog modal-sm-8">
    <div class="modal-content">
        <div class="nav-tabs-custom">
            <ul class="nav nav-tabs pull-left">
                <li class=""><a href="{{url('plan')}}">Plan</a></li>
                <li class="active"><a href="{{url('real')}}">Real</a></li>
            </ul>

            <div class="tab-content">
                <div class="chart tab-pane active" id="revenue-chart">
                {!! Form::open([$spent_time, 'url' => route('real.update', $spent_time->id), 'method' => 'POST', 'role'=>'form']) !!}
                {{ csrf_field() }} {{ method_field('PUT') }}

                <div class="box-body">
                <div class="form-group">
                    {!! Form::label('user_story','Today Plan *', ['class' => 'control-label', 'name'=>'user_story']) !!}</label>
                    {!! Form::text('user_story', old('plan_id', is_null($spent_time->plan->user_story) ? null : $spent_time->plan->user_story), 
                    ['class'=>'form-control', 'readonly' => 'true']) !!}                   
                </div>

                <div class="form-group">
                    {!! Form::label('daily_spent_time','Spent Time *', ['class' => 'control-label', 'name'=>'daily_spent_time']) !!}</label>
                    {!! Form::text('daily_spent_time', old('daily_spent_time', $spent_time->daily_spent_time ?: null), 
                    ['class'=>'form-control', 'id'=>'daily_spent_time']) !!}                   
                </div>

                <div class="form-group">
                    {!! Form::label('daily_percentage','% Done *', ['class' => 'control-label', 'name' => 'daily_percentage']) !!}</label>
                    {!! Form::text('daily_percentage', old('daily_percentage', $spent_time->daily_percentage ?: null), 
                    ['class'=>'form-control', 'id'=>'daily_percentage']) !!}
                </div>

                <div class="form-group">
                    {!! Form::label('reason','Reason', ['class' => 'control-label', 'name'=>'reason']) !!}</label>
                    {!! Form::textarea('reason', old('reason', $spent_time->reason ?: null), ['class'=>'form-control', 'id'=>'reason']) !!}  
                </div>

                <div class="form-group">
                    {!! Form::submit('Save', ['class' => 'btn btn-block btn-primary btn-flat', 'type'=>'submit']) !!}
                </div>
            </div>
        </div>
    </div>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
 <script type="text/javascript">
// jQuery
$('.edit_real').on('click', function (event) {
    event.preventDefault();
    $('#edit_real').modal();
});

Preliminary data, when editing in number 2, data will be saved to data number 1

enter image description here

Why when editing data using modal, change all IDs?

enter image description here

enter image description here

What should be improved? where is the error that must be corrected? why all ids are called when editing on one number?

展开全部

  • 写回答

2条回答 默认 最新

  • dongzhang7961 2018-10-26 00:34
    关注

    Answer

    add {!! Form::close() !!} in _form.blade.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部