[ThinkPHP菜鸟之路]2.换用TP后遇到的问题1

在放弃使用ZF2后,又回头来看TP的官方文档,发现相比之下TP的官方确实想当不错。

但也有一些问题存在。

可能是个人水平不足,导致在看到模型操作时觉得一阵头晕。

官方文档上注明可以通过调用M方法和D方法来实例化一个模型,且这两种方法操作简便,可以满足大多数的使用情景,因此在一开始我也并没有多去思考,直接调用了M方法来实例化User写出初步的reg:

    public function reg()
    {
    	if (!I('post.submit')){
    		$this->display('reg');
    	}
    	else {
    		$user = M('User');
    		$post = array(
    			'account' => I('post.account'),
    			'password'=> I('post.password'),
    			'phone'	  => I('post.phone')
    		);
    		$result = $user->add($post);
    		if ($result)
    			$this->success('Well Done!','Index/index');
    	}
    }
试验后发现reg实现的很好,便又照着模仿着写了login:

    public function login()
    {
    	if (!I('post.submit')){
    		$this->display('login');
    	}
    	else {
    		$user = M('User');
    		$post = array(
    			'account' => I('post.account'),
    			'password'=> I('post.password')
    		);
    		$data = $user->where('account='.$post['account'])->select();
    		if (empty($data)) $this->error('No such a user!');
    		else if ($data['password']!=$post['password']) $this->error('Password Wrong!');
    		else $this->success('Well Done!','Index/index');
    	}
    }
然后问题就出现了。

当输入了account和password后,发现抛出异常,提示

SQLSTATE[42S22]:Column not found:1054 Champ 'test' inconnu dans where clause.

初步阅读后发现是在说没有找到test列,便回头去看数据库中内容发现有test这个用户,便觉得很不能理解,又测试了诸如where->find、query等方法,发现都不能实现。

最后将

$data = $user->where('account='.$post['account'])->select();

这一行改为

$data = $user->getByAccount(trim($post['account']));
后,功能得以实现。

原因依旧未知,还望大神解惑。。

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值