招聘語法說明
更新時間:2019-12-10
簡歷主要適用于招聘模型。
使用步驟:
1.在模型詳情頁中配置簡歷上傳代碼,在 “ 模型管理-招聘-模型設置 ” 中,開啟“投遞簡歷”業(yè)務。
2.配置表單使用到的語法
/front/interface/addresume? ? ? ? ? ? ??//文件提交地址
method=“POST”? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//表單提交方法
enctype? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??//屬性規(guī)定在發(fā)送到服務器之前應該如何對表單數據進行編碼。
file? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//文件名
{{ Globals.getTokenv2() }}? ? ? ? ? ??//全局token
使用示例:
<form id="form" enctype="multipart/form-data" method="POST" action="/front/interface/addresume?debug=1">
姓名:<input type="text" name="name" placeholder="請輸入姓名">
學歷:<input type="text" class="form-control" name="education" placeholder="請輸入學歷">
工作年限:<input type="text" class="form-control" name="emlength" placeholder="請輸入工作年限">
畢業(yè)院校:<input type="text" class="form-control" name="byyx" placeholder="請輸入畢業(yè)院校">
簡歷:<input type="file" id="file" name="file"> <p class="help-block">簡歷文件不能大于20M</p>
<input type="hidden" name="infoid" value="{{ Pageinfo['_id'] }}">
<input type="hidden" name="hashid" value="5cd3a3572f03b960ce18a2f2">
{{ Globals.getTokenv2() }}
<button type="submit" >提交</button></form>