的Yii-jedis!
我正在研究一些旧的Yii项目,必须向他们添加一些功能。 Yii是非常合乎逻辑的框架,但它有一些我无法理解的东西。也许我还没理解Yii-way。所以我将逐步描述我的问题。对于不耐烦的人 - 最后简要提问。
简介:我想在我的项目中添加人类可读的网址。
现在网址如下: www.site.com/article/359
我希望它们看起来像这样: www.site.com/article/how-to-make-pretty-urls
非常重要:旧格式网址必须提供旧文章,新网址必须提供新文章。
第1步:首先,我在 config / main.php 中更新了重写规则:
'<controller:\w+>/<id:\S+>' => '<controller>/view',
我已在文章表中添加了新的 texturl 列。因此,我们将在此处存储新文章的 human-readable-part-of-url 。然后我用 texturl 更新了一篇文章进行测试。
第2步:应用程序在 ArticleController 的 actionView 中显示文章,所以我添加了此代码用于预处理ID参数:
if (is_numeric($id)) {
// User try to get /article/359
$model = $this->loadModel($id); // Article::model()->findByPk($id);
if ($model->text_url !== null) {
// If article with ID=359 have text url -> redirect to /article/text-url
$this->redirect(array('view', 'id' => $model->text_url), true, 301);
}
} else {
// User try to get /article/text-url
$model = Article::model()->findByAttributes(array('text_url' => $id));
$id = ($model !== null) ? $model->id : null ;
}
然后开始遗留代码:
$model = $this->loadModel($id); // Load article by numeric ID
// etc
工作完美!但...
第3步:但我们有很多ID参数的动作!我们要做什么?使用该代码更新所有操作?我认为这很难看。我找到了CController::beforeAction方法。看起来不错!所以我声明beforeAction并在那里放置ID preproccess:
protected function beforeAction($action) {
$actionToRun = $action->getId();
$id = Yii::app()->getRequest()->getQuery('id');
if (is_numeric($id)) {
$model = $this->loadModel($id);
if ($model->text_url !== null) {
$this->redirect(array('view', 'id' => $model->text_url), true, 301);
}
} else {
$model = Article::model()->findByAttributes(array('text_url' => $id));
$id = ($model !== null) ? $model->id : null ;
}
return parent::beforeAction($action->runWithParams(array('id' => $id)));
}
是的,它适用于两种网址格式,但它会执行 actionView TWICE 并显示两次页面!我该怎么办?我完全糊涂了。我有没有选择正确的方法来解决我的问题?
简要说明:我可以在执行任何操作之前执行ID(GET参数),然后使用仅修改过的ID参数运行请求的操作(一次!)吗?
答案 0 :(得分:13)
最后一行应该是:
return parent::beforeAction($action);
还要问你我没有得到你的步骤:3。
正如你所说,你有很多控制器,你不需要在每个文件中编写代码,所以你使用的是beforeAction: 但是你只有与所有控制器的文章相关的text_url?
$model = Article::model()->findByAttributes(array('text_url' => $id));
=====更新回答======
我已更改此功能,请立即查看。
如果$ id不是nummeric,那么我们将使用model找到它的id并设置$ _GET ['id'],所以在进一步的控制器中它将使用该数字id。
protected function beforeAction($action) {
$id = Yii::app()->getRequest()->getQuery('id');
if(!is_numeric($id)) // $id = how-to-make-pretty-urls
{
$model = Article::model()->findByAttributes(array('text_url' => $id));
$_GET['id'] = $model->id ;
}
return parent::beforeAction($action);
}
答案 1 :(得分:2)
抱歉,我没有仔细阅读,但您是否考虑过使用this extension?