tp5模型关联method not exist:think\db\Query->income

浏览:5913 发布日期:2018/08/06 分类:ThinkPHP5专区
$data = WeixiuUser::with('income')->where('id',$id)->field('id,name,avatar,wxid,phone,money')->select();

<?php
namespace app\api\model;

use think\Model;

class WeixiuUser extends Model
{
public function income(){
return $this->hasOne('Income','wxid','id')->field('price addtime');
}
}

method not exist:think\db\Query->income

模型下是有income方法的,但是还是报错方法不存在
最佳答案
评论( 相关
后面还有条评论,点击查看>>