我正在开发一个功能,应该允许用户更新他们的个人信息,我正在使用CI表单验证库。我想知道我所做的事情是否正确。
library(tm)
library(wordcloud)
data(crude)
crude <- tm_map(crude, removePunctuation)
crude <- tm_map(crude, function(x)removeWords(x,stopwords()))
wordcloud(crude)
这是对的吗?或者还有另一种方法可以做到这一点吗?
答案 0 :(得分:0)
是的,到目前为止,你是对的 但如果验证成功,您应该进行处理
public function updateDetails()
{
// load the library if not already loaded in config/autoload.php
$this->load->library('form_validation');
$this->form_validation->set_rules('username', 'Username', 'required|max_length[32]');
if($this->form_validation->run() === true)
{
$this->load->model('users_model'); // load users model
$username = $this->input->post("username", true); // get the post from view
// Send to model
}
else
{
$data['error_message'] = "form not valid ...blablabla";
//go back to form
$this->load->view("form_vew",$data);
}
}