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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?