我有一个变量$country_code
,它在我的表单的一个部分显示正确的值,但不在另一部分。为什么会这样?
这是我的代码:
{{ Form::open(['action' => ['PinVerificationController@valid'],'id'=>'pin_code_form']) }}
//$country_code shows 1
We sent a text message to {{$country_code}} {{$phone_number}}. You should receive it within a few seconds.<br><br>
{{ Form::label('Pin Code', null, ['class' => 'control-label']) }}
{{ Form::hidden('country_code', $country_code) }}//<------shows 1-US instead of 1
{{ Form::hidden('phone_number', $phone_number) }}
{{ Form::hidden('type', $pin_notification_type) }}
{{ Form::text('pin_code', null,['placeholder' => 'Pin Code'])}}<br><br>
Enter a 4 digit pin you received by phone.
<br>
<br>
{{ Form::submit('Verify',['name'=>'validate'])}}
{{ Form::close() }}
因此,如果我在控制器中将$ country_code设置为“1”,它将显示我们发送了一条短信给1 5555555.您应该在几秒钟内收到它。
但是,如果我在隐藏的表单上执行检查元素,则会显示1-US。我已尝试php artisan view:clear
和php artisan clear-compiled
,但问题仍然存在。
我也尝试过硬编码值{{ Form::hidden('country_code', 'asdf') }}
而我没有看到变化。我尝试添加测试{{ Form::hidden('country_code1', 'asdf') }}
并查看更新。
我还将country_code
重命名为country_code111
以显示我的隐藏字段,并显示正确的值1.我认为这是一个缓存问题,但就像我提到的那样我已尝试php artisan cache:clear
问题仍然存在。
答案 0 :(得分:6)
由于您使用的是Laravel 5.4,我假设您使用的是LaravelCollective中的Form
,因为它们是从5.x中的基线Laravel中删除的。
如果LaravelCollective Forms存在于请求数据中或旧发布的数据(old()
函数中),它将覆盖您提供给输入的值。我怀疑你就是这种情况。
您可以看到此行为实现here。
要解决此问题,您有以下几种选择:
Form::
生成表单,只使用经典的html / Blade自动创建隐藏的输入就个人而言,我建议#3,因为那样你就可以完全控制你的代码了。
<input type="hidden" name="country_code" value="{{ $country_code }}"/>