设为首页
收藏本站
Archiver
用户
登录
入住
用户名
Email
自动登录
找回密码
密码
登录
入住 CI 中国社区
首页
返回 CodeIgniter 中国首页
论坛
BBS
导读
Guide
个人主页
Space
中文手册
搜索
CodeIgniter 搜索引擎
视频教程
案例
任务
搜索
搜索
本版
帖子
用户
设为首页
收藏本站
Archiver
开启辅助访问
切换到宽版
日志
相册
分享
记录
CodeIgniter4
CodeIgniter3
CodeIgniter2
帖子
好友
道具
勋章
收藏
任务
记录
留言板
设置
我的收藏
退出
腾讯QQ
微信登录
CodeIgniter 中国开发者社区
»
论坛
›
CodeIgniter 开发
›
CodeIgniter 问答求助
›
controller的 _remap 似乎失效?
返回列表
查看:
1497
|
回复:
5
[版本 4.x]
controller的 _remap 似乎失效?
[复制链接]
rfrkk
rfrkk
当前离线
积分
145
IP卡
狗仔卡
发表于 2019-2-20 13:21:13
|
显示全部楼层
|
阅读模式
我在App\Controllers\wheels建立一支controller: care.php,
简单测试_remap,代码如下,
假设网址为 127.0.0.1/myproject/wheels/care/a1,结果会出现 a1,
假设网址为 127.0.0.1/myproject/wheels/care/bb123,结果会出现 Method App\Controllers\wheels\Care::bb123() does not exis,
并没有如我预期导向contentProcess函式,
请教我哪边写错了呢? 谢谢
PHP
复制代码
namespace
App\Controllers\wheels
;
use
CodeIgniter\Controller
;
class
Care
extends
Controller
{
public
function
_remap
(
$method
,
...
$params
)
{
if
(
method_exists
(
$this
,
$method
)
)
{
return
$this
->
$method
(
)
;
}
else
{
return
$this
->
contentProcess
(
)
;
}
}
protected
function
contentProcess
(
)
{
echo
'contentProcess'
;
}
protected
function
a1
(
)
{
echo
"a1"
;
}
}
复制代码
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
千斤顶
显身卡
燃雲
燃雲
当前离线
积分
650
IP卡
狗仔卡
发表于 2019-2-20 16:38:33
|
显示全部楼层
本帖最后由 燃雲 于 2019-2-20 16:40 编辑
PHP
复制代码
public
function
_remap
(
$method
,
...
$params
)
{
$method
=
'process_'
.
$method
;
if
(
method_exists
(
$this
,
$method
)
)
{
return
$this
->
$method
(
...
$params
)
;
}
show_404
(
)
;
}
复制代码
回复
支持
反对
使用道具
举报
显身卡
rfrkk
rfrkk
当前离线
积分
145
IP卡
狗仔卡
楼主
|
发表于 2019-2-21 08:37:22
|
显示全部楼层
谢谢你的协助,但这不是答案
回复
支持
反对
使用道具
举报
显身卡
燃雲
燃雲
当前离线
积分
650
IP卡
狗仔卡
发表于 2019-2-22 17:41:01
|
显示全部楼层
rfrkk 发表于 2019-2-21 08:37
谢谢你的协助,但这不是答案
PHP
复制代码
public
function
_remap
(
$method
,
...
$params
)
{
$method
=
'process_'
.
$method
;
// <-这不是答案?
if
(
[
url
=
http
:
//www.php.net/method_exists]method_exists[/url]($this, $method))
{
return
$this
->
$method
(
...
$params
)
;
}
show_404
(
)
;
}
复制代码
回复
支持
反对
使用道具
举报
显身卡
Hex
Hex
当前离线
积分
50169
IP卡
狗仔卡
发表于 2019-2-22 18:53:31
|
显示全部楼层
看起来没问题,更新一下 CI4 到最新版试试?
回复
支持
反对
使用道具
举报
显身卡
rfrkk
rfrkk
当前离线
积分
145
IP卡
狗仔卡
楼主
|
发表于 2019-2-23 09:21:08
|
显示全部楼层
我發現問題是在 ci debug tool 的route.php
我打包成zip 下載點
https://drive.google.com/file/d/1odfEF8Pflvfxa0Fgsx05SwfGkibBoTDW/view
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
入住 CI 中国社区
本版积分规则
发表回复
回帖后跳转到最后一页