포럼
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
procFilter(); 함수로 File 정보 전송하는 방법에 대해 질문드립니다 ~
2012.10.09 07:29
<form action="./" method="get" onsubmit="return procFilter(this, send_mail)" enctype="multipart/form-data">
<tr> <th scope="col" rowspan="3">Attach files</th>
<td> <input type="file" name="file1" id="file1" /> </td> </tr>
</form>
이렇게 되어있는데
Controller 에서
$args = Context::gets('file1'); 이렇게 해서는 파일정보를 못가져오네요 파일업로드에 관한 모듈을 만들려고 하는데 에디터에 붙어있는 파일업로드 말고 procFilter로 하는 방법이 궁금합니다.
Filter를 사용하는 경우 파일 전송이 불가능합니다.
Filter에 callback 함수를 지정해서 callback 함수에 빈 iframe으로 form을 submit하도록 하면 됩니다.