3

我是 CodeIgniter 的新手,我需要一些帮助。我想实现以下内容:

  • 通过以下方式查看用户的个人资料:http://localhost/profile/johndoe

  • 通过以下方式管理用户的个人资料:http://localhost/admin/profile/johndoe

  • 能够通过以下方式完成进一步的处理: http://localhost/admin/profile/create ...和... http://localhost/admin/profile/edit/johndoe

我已经创建了管理对象并对其进行了保护。我是否必须在管理员下创建配置文件功能,并使用 URI 进行相应处理?有没有更好的办法?

4

2 回答 2

8

这不是一个好主意。

如果要实现这些 URL,则需要两个控制器:

  1. 配置文件,具有功能index
  2. 管理员,具有功能profile

在 Admin 中,该profile函数必须读取第一个参数 (create/edit/[userid]),然后执行相应的操作。(您还必须确保没有用户可以称自己为“创建”或“编辑”。)

相反,我将只使用一个具有功能show、、editcreate(或add)的控制器。容易得多。然后你会得到这些 URL:

  • http://localhost/profile/show/johndoe
  • http://localhost/profile/edit/johndoe
  • http://localhost/profile/create/johndoe
于 2008-09-25T15:25:58.993 回答
1

我找到了我正在寻找的解决方案:http: //www.clipmarks.com/clipmark/75D02C9E-3E76-483E-8CCE-30403D891969/

谢谢,Christian D,我比我更喜欢你的解决方案。我会去的。

于 2008-09-25T19:34:02.047 回答