Skip to content

fields 一处BUG #2

@ziqiming

Description

@ziqiming

$this->fields('id' , 'gid' , 'image' , 'number' , 'price' , 'select')->find(3);

这样的时候会报错,修复办法
doitphp -> Model.php -> fields

找到

$fieldName = implode(',', $new);

替换为

$new = []; 
foreach ($fieldName as $key => $value) {
    array_push($new ,  '`' . $value . '`' );
}
$fieldName = implode(',', $new);
unset($new);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions