gpt4 book ai didi

php - 使用 url : www. example.com/pageName 创建 yii2 动态页面

转载 作者:可可西里 更新时间:2023-11-01 13:47:06 24 4
gpt4 key购买 nike

在我的系统中,用户需要有他们的个人资料页面。我要求这些页面将显示在这样的 url 中:

www.example.com/John-Doe

www.example.com/Mary-Smith

如何在 yii2 中实现这些 URL?这些 John-Doe 和 Mary-Smith 可以是用户用户名或个人资料名称。例如,我在用户表中有一个名为“name”的字段,它将包含名称“John Doe”、“Mary Smith”。请注意,我需要带有“-”而不是空格的 SEO 友好 URL。

像这样的网址: www.example.com/profile/view?id=1不是一个选择。

最佳答案

www.example.com/John-Doe

www.example.com/Mary-Smith

我认为没有使用这些 url 的正常方法,因为首先需要确定 Controller (在您的情况下是 ProfileController)。从这些网址是不可能做到的。

您提供的网址的第二个问题 - 不能保证唯一性。如果名为 John Doe 的另一个用户将在网站上注册怎么办?

例如,查看您在 Stack Overflow 上的个人资料链接:

http://stackoverflow.com/users/4395794/black-room-boy

不是 http://stackoverflow.com/black-room-boy 甚至不是 http://stackoverflow.com/users/black-room-boy .

idname 结合起来是一种更广泛、更可靠的方法。它们也可以像这样与破折号结合使用:http://stackoverflow.com/users/4395794-black-room-boy

Yii 2 有内置的行为,叫做 SluggableBehavior .

将它附加到您的模型:

use yii\behaviors\SluggableBehavior;

public function behaviors()
{
return [
[
'class' => SluggableBehavior::className(),
'attribute' => 'name',
// In case of attribute that contains slug has different name
// 'slugAttribute' => 'alias',
],
];
}

对于您的特定 url 格式,您还可以指定 $value:

'value' => function ($event) {
return str_replace(' ', '-', $this->name);
}

这只是生成自定义 slug 的示例。根据您的 name 属性特征和保存前的验证/过滤进行更正。

另一种实现唯一 url 的方法是设置 $ensureUnique属性为 true

所以在 John-Doe 存在的情况下 John-Doe-1 将生成 slug 等等。

请注意,您还可以通过设置 $uniqueSlugGenerator 来指定您自己的唯一生成器可调用。

我个人不喜欢这种方法。

如果您选择类似于 Stack Overflow 使用的选项,则将其添加到您的 url 规则中:

'profile/<id:\d+>/<slug:[-a-zA-Z]+>' => 'profile/view',

ProfileController 中:

public function actionView($id, $slug)
{
$model = $this->findModel($id, $slug);
...
}

protected function findModel($id, $slug)
{
if (($model = User::findOne(['id' => $id, 'name' => $slug]) !== null) {
return $model;
} else {
throw new NotFoundHttpException('User was not found.');
}
}

但实际上 id 足以找到用户。如果您使用正确的 id 但不同的 slug 进行访问,Stack Overflow 会重定向。当您也完全跳过该名称时,就会发生重定向。

例如 http://stackoverflow.com/users/4395794/black-room-bo 重定向到原始页面 http://stackoverflow.com/users/4395794/black- room-boy 以避免不利于 SEO 的内容重复。

如果您也想使用它,请像这样修改 findModel() 方法:

protected function findModel($id)
{
if (($model = User::findOne($id) !== null) {
return $model;
} else {
throw new NotFoundHttpException('User was not found.');
}
}

actionView() 像这样:

public function actionView($id, $slug = null)
{
$model = $this->findModel($id);
if ($slug != $model->slug) {
return $this->redirect(['profile/view', ['id' => $id, 'slug' => $model->slug]]);
}
}

关于php - 使用 url : www. example.com/pageName 创建 yii2 动态页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27986102/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com