dongmaonao0505 2012-12-12 16:33
浏览 53

设置静态模型CModel的属性

I am modifying existing functional code that relied on CActiveRecord. I am now connecting to sybase, which has no schema driver, so I am rewriting with CModel instead of CActiveRecord. My problem may be that I don't understand this general OOP concept?

Original: MyModelController.php

MyModel::model()->scenario='case1';

referring to ::model() no longer works...because I believe this method only works when the base class is CActiveRecord.

/**
 * Returns the static model of the specified AR class.
 * @param string $className active record class name.
 * @return ClientProg the static model class
 */
public static function model($className=__CLASS__)
{
    return parent::model($className);
}

How can I set the scenario attribute for MyModel now that it is based off of CModel, in the same fashion as I did when the base class was CActiveRecord?

  • 写回答

1条回答 默认 最新

  • dtxpz8785 2012-12-13 00:08
    关注

    When you call model(), it is internaly creating an instance for you the first time, and then refering to this cached object.

    if your method its static then do not rely on properties on the instantiated version, you'll get headaches later on.

    Check if a static property serve your needs, or pass the scenario as a parameter to your static calls.

    anyway, static its evil, so avoid it if you can.

    评论

报告相同问题?

悬赏问题

  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据