我在使用 CodeIgniter Form Helper 和 Smarty 时遇到了一些小问题。
我使用了这个(https://github.com/EllisLab/CodeIgniter/wiki/Form-helper-with-Smarty)表单助手函数。
现在我在控制器中有 addUser() 函数
public function addUser(){
$this->load->helper('form');
$this->form_validation->set_rules('username', 'Benutzername', 'trim|required|min_length[4]|xss_clean');
$this->form_validation->set_rules('email', 'Email', 'trim|required|valid_email');
$this->form_validation->set_rules('password', 'Passwort', 'trim|required|min_length[4]|max_length[32]');
$this->form_validation->set_rules('con_password', 'Passwort bestätigen', 'trim|required|matches[password]');
if($this->form_validation->run() == FALSE){
echo "Error! User can not create";
}else{
$this->user_model->add_user();
echo "Done!";
}
$this->smarty->display($this->tpl);
}
我使用了以下.TPL
{form url='pageadmin/addUser'}
<p>
<label for="username">User Name:</label>
<input type="text" id="username" name="user_name" />
</p>
<p>
<label for="email_address">Your Email:</label>
<input type="text" id="email" name="email_address" />
</p>
<p>
<label for="password">Password:</label>
<input type="password" id="password" name="password" />
</p>
<p>
<label for="con_password">Confirm Password:</label>
<input type="password" id="con_password" name="con_password" />
</p>
<p>
<input type="submit" value="Submit" />
</p>
{form}
但是现在,当我尝试这个时。我有两个问题。第一个是,当我调用函数 addUser() 时,始终显示消息“错误!用户无法创建”。第二个问题是,由表单提交生成的 url 是这样的“ http://dev.url.de/admin/addUser/dev.url.de/pageadmin/addUser ”。
非常感谢你,对不起我的英语不好......