drrc61668568 2018-10-26 06: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 08:34
    关注

    Answer

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

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

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵