我有一个包含2个字段price
和order_id
的表单,然后我需要做的submit
按钮是
price
,order_id
和comments
并将它们发送到控制器,然后在其中执行任何操作。这是我的表单在刀片中的外观
{!! 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="">
{!! 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>
答案 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()
});