묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
controller 파일에서 html 파일로 데이터 넘기는 방법좀 알려주세요.
2015.06.23 17:41
controller 파일에서 html 파일로 데이터 넘기는 방법좀 알려주세요.
예를들면,,
example.controller.php 에서
function procExampleSearch() { $args = Context::getRequestVars(); $oinBoundModel = &getModel('example'); $output = $oinBoundModel->getExampleInfo('example.getStore', $args->MatName); if(!$output->data) $output->data = array(); Context::set('stored_list', $output->data); $this->setRedirectUrl(Context::get('success_return_url')); }
이렇게 하고
example.html 에서 {$stored_list as .....} 으로 불러보려고 하는데 데이터가 안불러와지네요. ㅠㅠ
도와주세요.
댓글 3
-
GG
2015.06.23 17:49
view 에서 set 하셔야 할듯요 -
어렵다정말로
2015.06.23 18:17
답변감사드려요. 그런데
view 에서 set 하고 setTempletFile(list) 했는데
주소가. 도메인/xe/ 이런식으로 되서 페이지가 깨지네요.
원래는 도메인/xe/mid=모듈번호 이렇게 되어야하는데요.
혹시 왜그런지 알려주실 수 있을까요?? 현재 잛은 주소는 사용안하고 있어요 -
GG
2015.06.23 20:22
해당 기능이 뭔지는 모르지만 꼭 controller 에서 처리 안하셔도 됩니다. view 에서 처리 하셔도 되요