Phalcon路由器发送错误的参数

Phalcon router sends the wrong parameters

我的 Phalcon 路由器有问题。 我在我的控制器中有一个动作,以太是否接受日期参数。 所以当我访问 URL 时:http://example.com/sl/slots/index/2017-06-27 一切正常。 但是当我去:http://example.com/sl/slots/index 我收到以下错误:

DateTime::__construct(): Failed to parse time string (sl) at position 0 (s): The timezone could not be found in the database.

所以路由器实际上把开头的"sl"作为参数

我的这种url路由器是这样设置的:

$router->add(
    "/{language:[a-z]{2}}/:controller/:action",
    array(
        "controller" => 2,
        "action"     => 3
    )
);

顺便说一句,它在没有索引的情况下也是如此:http://example.com/sl/slots

哦,我的插槽索引操作如下所示:

public function indexAction($currentDate = false){ //code }

所以当我调用不带参数的操作时,$currentDate 设置为 "sl"

感谢您的帮助

好吧,您也需要在操作的第一个参数中添加语言。然后它应该工作。

除了@Juri 的回答.. 我更喜欢让我的 Actions 保持空白或尽可能苗条。想象一下,如果你在 Route 中有 3-4 个参数,你最终会得到类似这样的东西:

public function indexAction($param1 = false, $param2 = false, $param3 = false....) 

以下是我更喜欢处理路由参数的方式:

public function indexAction()
{
  // All parameters
  print_r($this->dispatcher->getParams());

  // Accessing specific Named parameters
  $this->dispatcher->getParam('id');
  $this->dispatcher->getParam('language');

  // Accessing specific Non-named parameters
  $this->dispatcher->getParam(0);
  $this->dispatcher->getParam(1);
  ...
}