memmanager.class.php
function dispMemmanagerChangeclub()
{
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('dispclubMemberList');
}
function completechangememmanagerclubList(ret_obj)
{
var error = ret_obj['error'];
var message = ret_obj['message'];
var page = ret_obj['page'];
alert(message);
var URL = current_url;
location.href = URL;
}
위와 같이 작성 하였습니다.
궁금한 점은 setTemplateFile()에서 지정한 html로 리디렉션이 어떻게 일어나는가 하는 점입니다.
var URL = current_url;
------------------------------------------- 다음과 같이 수정
current_url.setQuery('act','dispMemmanagerChangeclub')
위처럼 작성하니, Contest::Set 한 데이터는 안넘어 오더군요...
(URL 재설정이 일어 나면서.. DB 쿼리를 재실행하면서 원하는 값이 안나옵니다.ㅠ_ ㅠ)
방법을 좀 알려주시기 바랍니다..ㅠ_ ㅠ
워낙 허접이라 몇날 몇일째 삽질이네요..
P.s 디버그 프린트를 이용해서 DB에서 데이터를 가져오는 부분은 확인 하였습니다.