think
think copied to clipboard
withattr用在查询之后,无法处理关联模型的字段
1、model('Video')->with('user')->withAttr('user.avatar', function () {return 1})->select(); 2、model('Video')->select()->with('user')->withAttr('user.avatar', function () {return 1});
第二种方式不能处理avatar字段。