调用未定义的方法app \ models \ Message :: model()

时间:2016-01-22 11:12:07

标签: php activerecord yii2 yii2-basic-app

我是Yii2的新手,使用Gii工具,我为简单的'Message'类创建了模型和CRUD组件,其中一个字段'content'映射到tbl_message。

我收到错误,尝试使用findByPk函数检索一个消息对象时如下:

$message = Message::model()->findByPk(4);

错误讯息:

Call to undefined method app\models\Message::model()

1 个答案:

答案 0 :(得分:5)

这就足够了:

template< typename T >
const Array &Array< T >::operator=(Array &other)
{
    if( &other != this)
    {
        if( other.getSize != this->size)
        {
            delete [] ptr;
            size = other.getSize;
            ptr = new T[size];
        }

        for ( int i = 0; i < size; i++)
        {
            ptr[i] = other[i];
        }
    }
    return *this;
}

可以找到更多详细信息和自定义案例here