我希望在我的/app/Config/routes.php配置文件中加载数据库中的值。
我在顶部使用:App::uses('Option', 'Model');
我在课堂上称呼我的发现:$this->Option->find('all');
我错过了什么吗?
答案 0 :(得分:5)
我不会在路由中放置任何数据库查询。它不是他们的地方(关注点分离等)。它也会减慢每个请求的速度,并且路由不应该经常改变。
我所做的是每次创建/更新数据库路由时在app / tmp / cache中创建一个路由文件(你的代码会有所不同,但这就是我的工作方式)。
在路线模型中:
function rebuildCache() {
$data = $this->find('all');
$buffer = "<?php\n";
$filename = TMP . 'cache' . DS . 'routes.php';
foreach($data as $item) {
$url = Router::parse('/' . $item['Route']['destination']);
if (count($url['pass']) > 0) {
$id = $url['pass'][count($url['pass']) - 1];
}
else {
$id = null;
}
$buffer .= "Router::connect('/{$item['Route']['url']}', array('controller'=>'{$url['controller']}', 'action'=>'{$url['action']}', {$id}));\n";
}
file_put_contents($filename, $buffer);
}
从你的路线模型中调用rebuildCache()afterSave():
function afterSave() {
$this->rebuildCache();
}
只需在Routes.php中包含该文件:
$routes_cache_filename = TMP . 'cache' . DS . 'routes.php';
if (file_exists($routes_cache_filename)) {
require_once $routes_cache_filename;
}
答案 1 :(得分:2)
我认为你必须在使用之前实例化模型:
App::uses('Option', 'Model');
$option = new Option();
$something = $option->find('all');
答案 2 :(得分:0)
/*Load ClassRegistry*/
App::uses('ClassRegistry', 'Utility');
/**
* Initialize model and perform find
*/
$Cms = ClassRegistry::init('Cms');
$cmsdata = $Cms->find('all');
/**
* Iterate over results and define routes
*/
foreach ($cmsdata as $cmsrow) {
Router::connect('/', array('controller' => $cmsrow['Cms']['controller'], 'action' => $cmsrow['Cms']['slug']));
}