私のルートにこれがあります:
+--------+---------------------------+--------------+--------------------------- ---------+----------------+---------------+
| Domain | URI | Name | Action | Before Filters | After Filters |
+--------+---------------------------+--------------+--------------------------- ---------+----------------+---------------+
| | GET|HEAD / | | postcontroller | auth | |
| | GET|HEAD login | | homecontroller@dologin | | |
| | POST login | | homecontroller@dologin | | |
| | GET|HEAD logout | | homecontroller@dologout | | |
| | GET|HEAD post | post.index | postcontroller@index | | |
| | GET|HEAD post/create | post.create | postcontroller@create | | |
| | POST post | post.store | postcontroller@store | | |
| | GET|HEAD post/{post} | post.show | postcontroller@show | | |
| | GET|HEAD post/{post}/edit | post.edit | postcontroller@edit | | |
| | PUT post/{post} | post.update | postcontroller@update | | |
| | PATCH post/{post} | | postcontroller@update | | |
| | DELETE post/{post} | post.destroy | postcontroller@destroy
ここで、PUTメソッドを使用するフォームhtmlを作成します。ここに私のコードがあります:
<form class="col-md-12" action="<?php echo URL::to('/');?>/post/<?=$post->postID?>" method="put">
<div class="form-group">
<textarea type="text" class="form-control input-lg" placeholder="Text Here" name="post"><?=$post->post?></textarea>
</div>
<div class="form-group">
<button class="btn btn-primary btn-lg btn-block" type="submit" value="Edit">Edit</button>
</div>
</form>
しかし、フォームをpost.editに送信することはできません。
私はグーグルを使ったが、私は使用しなければならない解決策を得た
{{form:...etc
しかし、CSSスタイリングでフォームがまだできることを望んでいます。解決策はありますか?ありがとうございました
CSSテンプレートを追加したり、テンプレートに必要な属性を追加したりできます。これを試してください。
{{ Form::open(array('url' => '/', 'method' => 'PUT', 'class'=>'col-md-12')) }}
.... wathever code here
{{ Form::close() }}
ブレード方式にしたくない場合は、非表示の入力を追加できます。これはLaravelが何らかの形でする形式です:
注:HTMLフォームはPOSTおよびGETのみをサポートするため、PUTおよびDELETEメソッドは、フォームに_method隠しフィールドを自動的に追加することにより、スプーフィングされます。 (Laravel docs)
<form class="col-md-12" action="<?php echo URL::to('/');?>/post/<?=$post->postID?>" method="POST">
<!-- Rendered blade HTML form use this hidden. Dont forget to put the form method to POST -->
<input name="_method" type="hidden" value="PUT">
<div class="form-group">
<textarea type="text" class="form-control input-lg" placeholder="Text Here" name="post"><?=$post->post?></textarea>
</div>
<div class="form-group">
<button class="btn btn-primary btn-lg btn-block" type="submit" value="Edit">Edit</button>
</div>
</form>
代わりにHTML Form要素を使用している場合Laravel Form Builderを配置する必要がありますmethod_field
フォームの開始タグと終了タグの間。これにより、form method typeを明示的に定義できます。
<form>
{{ method_field('PUT') }}
</form>
フォーム内のどこかでこのように使用してください
@method('PUT')
非常に簡単です。次のようにmethod_field('PUT')
を使用するだけです。
[〜#〜] html [〜#〜]:
<form action="{{ route('route_name') }}" method="post">
{{ method_field('PUT') }}
{{ csrf_field() }}
</form>
または
<form action="{{ route('route_name') }}" method="post">
<input type="hidden" name="_method" value="PUT">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
</form>
よろしく!
ビューブレードで
{{ Form::open(['action' => 'postcontroller@edit', 'method' => 'PUT', 'class' = 'your class here']) }}
<div>
{{ Form::textarea('textareanamehere', 'default value here', ['placeholder' => 'your place holder here', 'class' => 'your class here']) }}
</div>
<div>
{{ Form::submit('Update', ['class' => 'btn class here'])}}
</div>
{{ Form::close() }}
実際には、質問のような生のフォームを使用できます。しかし、私はそれをお勧めしません。 dan itulah salah satu alasan agan belajar framework、simple、dan cepat。ケナパ・パケ生の形のカロ・アダ・ヤン・レビ・ムダ。へへ。インドネシア人であることを誇りに思います。
参照(laravelブレードフォーム)[ http://laravel-recipes.com/recipes/124/opening-a-new-html-form]