Taebu / prq

prq.co.kr
MIT License
1 stars 1 forks source link

템플릿관리 뷰 #100

Closed moonsungjun closed 5 years ago

moonsungjun commented 5 years ago

https://prq.co.kr/prq/template/view/84/page/1

image

다른페이지 뷰가 나옴

Taebu commented 5 years ago

올바른 url https://prq.co.kr/prq/template/view/bt_template/bt_no/84/page/1

지금 수정 후 나오는 url https://prq.co.kr/prq/template/view/84/page/1

올바른 url 로 개선 https://prq.co.kr/prq/template/view/bt_template/bt_no/84/page/1

Taebu commented 5 years ago

수정 완료 개선 전

alert('수정되었습니다.',
 '/prq/template/view/'.$this->input->post('bt_no', TRUE).'/page/'.$pages);

개선후

alert('수정되었습니다.', 
sprintf('/prq/template/view/bt_template/bt_no/%s/page/%s',
$this->input->post('bt_no', TRUE),
$pages)
);