主页 > 编程资料 > Yii >
发布时间:2018-12-11 作者:apizl 阅读:407次

提示如下:does not have a primary key. You should either define a primary key for the corresponding table or override the primaryKey() method

yii2 无法更新没有主键的表


我们需要去models进行设置:

/**
     * 指定主键
     * @return array|string[]
     */
    public static function primaryKey()
    {
        return ['key'];
    }


文章由爱资料原创本文地址:https://www.apizl.com/archives/view-148756-1.html,转载请以链接形式标明本文地址!
关键字词: