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.
我需要帮助。如何禁用 find() 方法的不必要元数据会导致 YII 框架。我不想在会话或客户端(javascript)中保存这种可怕的污垢。我只需要在会话中保存明确的模型属性数组或将此数组传输给客户端。我该如何解决我的问题?谢谢。
PS:$model->attributes 对我不起作用,因为我做了一些关系查询。
您始终可以使用标准来查找模型,并在标准中应用您的限制或选择您只需要的字段。
如果要取消设置模型属性,可以这样做:
$model->unsetAttributes();