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)andで試しましresetScope(true) たが、役に立ちませんでした。
resetScope(false)
resetScope(true)
どんな助けでも本当に感謝しています。
defaultScope()メソッドをオーバーライドして空の配列を返すことで、defaultScode を無効にすることができます。
defaultScope()
public function defaultScope() { return array(); }