Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
492 views
in Technique[技术] by (71.8m points)

cakephp - How to load non-default models?

In CakePHP2.x, I have frequently used $uses attribute in controllers but it seems that this attribute is no longer available in CakePHP 3.0.

The only way I know to load models which is not default one is to use loadModel() method. Is this recommended way to load models? Or is there any other way to load models?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your observations are correct, there is no $uses property anymore, instead models/tables that do not match the controller (ex PostsTable for PostsController) and are not available via associations, must be loaded explicitly.

This can be done by using either

So this is kind of a yes to your question, Controller::loadModel(), ie

$this->loadModel('Name');

is a viable way of adding model/table instances to your controller as properties, wich at least in the default configuration, is essentially the shorthand for:

$this->Name = TableRegistry::get('Name');

but more loadModel() is more abstracted, and supports non-table repositories.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...