$form = ActiveForm::begin([
'id' => 'deposit-form',
'enableClientValidation' => true,
'fieldConfig' => [
'template' => '{input}{error}',
'options' => [
'tag' => false
]
],
'action' => 'create',
'options' => [
'class' => 'form-horizontal',
'method' => 'post',
]
])
しかし次のコードで私のyii2アプリケーションでアクティブなフォームを作成している
、GETまたはPOSTで動作していません。
:私のフォームの 出力は
<form role="form" class="form-horizontal">
が、私は結果 次私もofficial documentationでこのコード
$form = ActiveForm::begin([
'id' => 'deposit-form',
'enableClientValidation' => true,
'fieldConfig' => [
'template' => '{input}{error}',
'options' => [
'tag' => false
]
],
'action' => 'create',
'method' => 'post',
'options' => [
'class' => 'form-horizontal',
]
])
addメソッド=フォームの 'ポスト' と確認し、詳細については、ANSの下に参照してください。 –