top-think / think-orm

Think ORM——the PHP Database&ORM Framework
Apache License 2.0
416 stars 173 forks source link

模型自动转驼峰功能异常 #506

Closed yinbug closed 1 year ago

yinbug commented 1 year ago

开启模型自动把字段转驼峰功能的时候会不兼容某些用法 protected $convertNameToCamel = true;

当手动把field 中字段定义别名是驼峰规则时,输出数据时字段一直是null 示例: ->field('name as categoryName') 结果该字段一直为null

->field('name as category_name') 时正常