laravel 5.4:从表单弹出注释模型提交数据然后将其全部发送出去之前

时间:2018-07-16 12:29:40

标签: php laravel

我有一个包含2个字段priceorder_id的表单,然后我需要做的submit按钮是

  • 当用户单击“提交”按钮引导模型弹出窗口并要求他发表评论时
  • 用户写评论并单击提交按钮
  • 获取这些值priceorder_idcomments并将它们发送到控制器,然后在其中执行任何操作。

这是我的表单在刀片中的外观

{!! Form::open(['route'=>['inline.update.price', $order->id], 'method'=>'patch']) !!}
{!! Form::text('price', $order->price, ['style'=>'width:100px']) !!}
{!! Form::hidden('orderListId', $orderList->id) !!}
<input type="submit" class="btn fa-input updatePriceButton" value="&#xf01b;">
{!! Form::close() !!}

我想通过像这样的会话来实现

<a href="" class="btn fa-input updatePriceButton" data-toggle="modal" data-target="#supplierComments">
<i class="fa fa-arrow-circle-up"></i>
{{ Session::put(['orderId' => $order->id]) }}
</a>

1 个答案:

答案 0 :(得分:0)

根据评论中的讨论:

提交第一个表单时,打开模型,

获取用户的评论意见,然后通过ajax提交整个表单 检查一下:

val dependencies: Seq[ModuleID] = commonDependencies ++ flinkDeps ++ Seq(
        "org.apache.flink" %% "flink-connector-cassandra" % "1.4.1" excludeAll ExclusionRule(organization = "com.datastax"),
        "com.mylibrary" %% "library" % "0.4.1"
      )
$(".flip-tile").hover(function() {
     $(this).find(".front").hide()
     $(this).find(".back").show()},
    function() {
      $(this).find(".back").hide()
     $(this).find(".front").show()
});