0

我想为重定向目的添加脚本。在

/amember/library/Am/Paysystem/Abstract.php in thanksaction function

我正在使用以下代码

$response->addScript()
                ->setScript(<<<CUT
jQuery(function($){

window.location.href ="http://www.google.com/";
});
CUT
);

但我收到以下错误:

Fatal error: Call to undefined method Am_Mvc_Response::addScript() in    /amemberroot/library/Am/Paysystem/Abstract.php 

有谁知道可能是什么问题?
提前致谢。

4

1 回答 1

0

Am_Mvc_Response类没有addScript等方法。aMember 有开源代码,您可以随时查看类声明。要进行重定向,只需使用以下代码:

Am_Mvc_Response::redirectLocation("http://www.google.com/");
于 2016-11-12T09:43:57.403 回答