如何在cakephp中保存数据库中的变量?

时间:2016-07-18 06:28:54

标签: cakephp

我在数据库中有两个表,在cakephp,UsersController和DatasController中有两个控制器。我想在数据表中保存经过身份验证的用户ID。 这是我的代码......

class DatasController extends AppController{
     public function adddam(){
     $uid=$this->Auth->user('id');
    $datas = $this->Datas->newEntity();
    if ($this->request->is('post')) {
        $datas = $this->Datas->newEntity();
        $this->request->data['user_id'] =$uid;
        $datas = $this->Datas->patchEntity($datas, $this->request->data);
        $this->Datas->save($datas);
        }
    }
}

但它无法正常工作。我忘记了其他一些事情吗?

1 个答案:

答案 0 :(得分:0)

我认为您正在使用 CakePhp3 ,然后尝试使用此结构添加'数据'

url = "http://www.che.iitb.ac.in/online/people/viewstudents?filter0=**ALL**&op1=&filter1=2010"
urllib.urlopen(url)