Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Yii 框架中,如何禁用defaultScope?
defaultScope
我尝试过resetScope(false)但resetScope(true) 无济于事。
resetScope(false)
resetScope(true)
任何帮助将非常感激。
您可以通过覆盖defaultScope()方法并返回空数组来禁用 defaultScode。
defaultScope()
public function defaultScope() { return array(); }