我尝试在urlManager中创建规则以使用UUID作为ID。浏览器发送下一个URL:
https://localhost/profiles/delete/e1028ae1-ce79-11e8-a22d-00163e9c1798
我具有以下设置:
main.php
'urlManager' => [
'class' => 'yii\web\UrlManager',
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
'' => 'site/index',
'<action:(login|logout|about|contact)>' => 'site/<action>',
//profiles
'<module:(profiles)>/<id:\d+>' => '<module>/default/view',
'<module:(profiles)>/<action:(index|delete|new)>/<id:\w+>' => '<module>/default/<action>',
'<module:(profiles)>/<action:(index|delete|new)>' => '<module>/default/<action>',
]
]
我的 DefaultController.php 的一部分(/common/modules/profiles/coontrollers/DefaultController.php)
<?php
namespace common\modules\profiles\controllers;
...
class DefaultController extends Controller
{
...
public function actionDelete($id)
{
die($id);
}
...
}
我正在使用AJAX将参数发送给操作。
let action = 'profiles/delete'
let id = 'e1028ae1-ce79-11e8-a22d-00163e9c1798'
$.ajax({
async: false,
url: 'https://localhost/' + action + '/' + id,
type: 'POST',
dataType: 'json',
success: (response) => {
console.log(response)
}
})
我的问题: 我可以毫无问题地访问索引操作和模块的新操作。但是当我调用删除操作时,我收到404错误。
我不知道我是否错误输入了urlManager中的规则,还是通过AJAX发送了错误的参数。我有静态参数,因为我先尝试实现。
答案 0 :(得分:3)
您用于id
参数的模式不正确-\w
不允许使用连字符,因此它将不匹配包含-
的ID。您需要更改此规则:
'<module:(profiles)>/<action:(index|delete|new)>/<id:\w+>' => '<module>/default/<action>',
对此:
'<module:(profiles)>/<action:(index|delete|new)>/<id:[\w-]+>' => '<module>/default/<action>',