我正在尝试创建一个简单的表单来编辑用户,但我无法查看我的输入类型的默认值,为什么?这是我的观点的代码
<?php
echo $this->Form->create('User');
foreach ($users as $user){
echo $this->Form->input('username', array(
'type' => 'text',
'default' => 'default value',
));
}
echo $this->Form->end('Edit');
?>
在页面 html 中,输入类型为空并且在源代码中:
<input id="UserUsername" type="text" value="default value" name="data[User][username]">
该值在 html 中,但我看不到我的页面!