Cakephp中传递参数的不同方法

发布于 2024-08-31 22:04:48 字数 332 浏览 3 评论 0原文

我正在使用 cakephp v1.26。
我在控制器中有一个像这样的函数:

class testingsController extends AppController{

function testing($id=null){
$recieved = $id;}

}

我不确定是否有更好的方法将参数传递给操作测试。
但我在一些网站上找到了这两种方法。
以下参数传递方式有什么区别吗?

1. url/testings/testing/1
2. url/testings/testing:1

I am using cakephp v1.26.
I got a function in a controller like this:

class testingsController extends AppController{

function testing($id=null){
$recieved = $id;}

}

I am not sure if there are any better ways to pass a parameter to the Action testing.
But I have come across some web sites and got these two methods.
Is there any difference in the following parameter passing methods?

1. url/testings/testing/1
2. url/testings/testing:1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南街女流氓 2024-09-07 22:04:48

url/testings/testing/1

使用标准路由,这将调用 TestingsController::testing(1)

这是标准参数传递,任何超出 /:controller/:action/ 的参数都会“按原样”传递给被调用的操作。

/controllers/action/param1/param2 对应
ControllersController::action($param1, $param2)

url/testings/testing:1

使用标准路由,这将调用 TestingsController::index()
$this->params['named']['testing'] 设置为 1。这称为命名参数。

命名参数可以按任何顺序传递。这两个 URL 是等效的:
url/testings/testing:1/foo:2
url/testings/foo:2/testing:1

它们不会被传递给函数,如functiontesting($id = null) >。 $id 将为 null。它们仅在 $this->params['named'] 数组中可用。

url/testings/testing/1

With standard routes, this will call TestingsController::testing(1).

This is standard parameter passing, any parameters beyond /:controller/:action/ are passed "as-is" to the called action.

/controllers/action/param1/param2 corresponds to
ControllersController::action($param1, $param2)

url/testings/testing:1

With standard routes, this will call TestingsController::index() and
set $this->params['named']['testing'] to 1. This is known as a named parameter.

Named parameters can be passed in any order. These two URLs are equivalent:
url/testings/testing:1/foo:2
url/testings/foo:2/testing:1

They will not be passed to the function, as in function testing($id = null). $id will be null. They're only available in the $this->params['named'] array.

坚持沉默 2024-09-07 22:04:48

第一个示例将其作为数字参数传递,

$this->params[0]; // 1

第二个示例将传递命名对,就像数组一样,

$this->params['testing']; // 1

您可以将其用于不同的用途。您会注意到分页器在对列和页面进行排序时使用 key:val 配对参数。

书中有一些进一步的信息, http: //book.cakephp.org/2.0/en/development/routing.html#passed-arguments

The first example you have will pass it as a numeric parameter

$this->params[0]; // 1

The second will pass a named pair, rather like an array

$this->params['testing']; // 1

You can use either for different things. You'll notice that the paginator uses key:val paired parameters when sorting columns and pages.

There is a little bit of further info in the Book, http://book.cakephp.org/2.0/en/development/routing.html#passed-arguments

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文