dousui4577 2015-11-07 23:37
浏览 26
已采纳

如何通过Zend parms传递URL?

I'm trying to pass an URL (or just a local file path) via the Zend setPara(). Unfortunately the router interprets this as several params.

$redirector = $this->_helper->getHelper('Redirector');
$redirector->gotoSimple('download', null, null, array('TEMP_FILE' => '/srv/www/htdocs/tmp/output.pdf'));

Apache shows error 404. The downloadAction() isn't called. So maybe there is another way to pass an entire URL from one action to another?

  • 写回答

1条回答 默认 最新

  • download1323 2015-11-09 03:30
    关注
    $params = array('param1' => $param1, 'param2' => $param2);
    $this->_helper->redirector('download', 'yourcontroller', 'yourmodule', $params);
    

    if you dont have a module ..leave empty for that

    Another simple way

    $this->redirect('/module/controller/download/param1/value/param2/value2');
    

    update use urlencode for params

    $this->redirect('/module/controller/download/param1/'.urlencode(value).'/param2/'.urle
    ncode(value2).');
    

    and while accessing use urldecode(value);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?