企业微信服务商
当前位置:首页文档模板语法招聘语法说明

招聘语法说明

更新时间:2019-12-10
简历主要适用于招聘模型。

使用步骤:

1.在模型详情页中配置简历上传代码,在 “ 模型管理-招聘-模型设置 ” 中,开启“投递简历”业务。


2.配置表单使用到的语法
/front/interface/addresume              //文件提交地址
method=“POST”                             //表单提交方法
enctype                                          //属性规定在发送到服务器之前应该如何对表单数据进行编码。
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="请输入工作年限">
毕业院校:
<input type="text" class="form-control" name="byyx" placeholder="请输入毕业院校">
简历:
<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>