说明:用于获取后台设置的留言表单
使用方法: 如将变量定义为fields
…
siteId
siteId
一般不需要填写,如果你使用后台的多站点管理创建了多个站点,并且想调用其他站点的数据,则可以通过指定 siteId
来实现调用指定站点的数据。fields 是一个数组对象,因此需要使用 for
循环来输出
Name
FieldName
Type
text
、数字类型 number
、多行文本类型 textarea
、单项选择类型 radio
、多项选择类型 checkbox
、下拉选择类型 select
。Required
Content
Items
radio
、多项选择类型 checkbox
、下拉选择类型 select
时,它们的每一个选择项构成了一个 Items 数组,可以通过 for 循环输出。留言表单提交需要使用 form 表单提交, 提交后台接收地址为:/guestbook.html
,需要提交的字段有
字段 | 是否必填 | 说明 |
---|---|---|
user_name | 是 | 留言的用户名 |
contact | 是 | 联系方式,如,电话,微信,QQ等 |
content | 是 | 留言内容 |
其他自定义字段 | 根据设置决定 | 后台添加表单额外字段设置的字段,根据设置是否为必填 |
return | 否 | 提交后,指定后端返回的格式,可选的值有:html 、json ,默认为 html |
通过下面的代码,可以循环输出所有的设置的字段。
<form method=“post” action=“/guestbook.html”>
<div>
<label>}</label>
<div>
<input type="}" name="}" required lay-verify="required" placeholder="}" autocomplete="off">
<textarea name="}" required lay-verify="required" placeholder="}" rows="5"></textarea>
<input type="}" name="}" value="}" title="}">
<input type="}" name="}[]" value="}" title="}">
<select name="}">
<option value="}">}</option>
</select>
</div>
</div>
<div>
<div>
<button type="submit">提交留言</button>
<button type="reset">重置</button>
</div>
</div>
</form>
如果你想自定义表单显示,你也可以使用常规的input来组织显示,如:
<form method=“post” action=“/guestbook.html”>
<input type=“hidden” name=“return” value=“html”>
<div>
<label>用户名</label>
<div>
<input type="text" name="user_name" required lay-verify="required" placeholder="请填写您的昵称" autocomplete="off">
</div>
</div>
<div>
<label>联系方式</label>
<div>
<input type="text" name="contact" required lay-verify="required" placeholder="请填写您的手机号或微信" autocomplete="off">
</div>
</div>
<div>
<label>留言内容内容</label>
<div>
<textarea name="content" placeholder="" id="comment-content-field" rows="5"></textarea>
</div>
</div>
<div>
<div>
<button type="submit">提交留言</button>
<button type="reset">重置</button>
</div>
</div>
</form>
上一篇: 安企CMS#评论标列表签#
下一篇: 安企CMS#分页标签#