联系官方销售客服
1835022288
028-61286886
留言表单,全局表单,手机号验证码 小坑 记录
www.xunruicms.com官方文档:https://www.xunruicms.com/doc/793.html
参考教程文档:https://www.xunruicms.com/wenda/24873.html
最下面为小坑
表单为例开发
然后在自定义字段里面,创建一个手机号码的字段:例如
这个表单叫test,他的前端提交控制器文件名是:xunruicms/dayrui/App/Form/Controllers/Test.php
打开这个文件
<?php namespace Phpcmf\Controllers; /** * 二次开发时可以修改本文件,不影响升级覆盖 */ class Test extends \Phpcmf\Home\Form { public function index() { $this->_Home_List(); } public function show() { $this->_Home_Show(); } public function post() { if (IS_POST) { $phone = $_POST['data']['这里填写自定义的手机号码字段']; // 这里需要改 shoujihao $code = \Phpcmf\Service::L('Form')->get_mobile_code($phone); if (!$code) { $this->_json(0, dr_lang('没有发送验证码')); } elseif ($code != $_POST['sms']) { $this->_json(0, dr_lang('验证码不正确')); } } $this->_Home_Post(); } }
然后,在表单提交模板里面加一句
<div class="form-group" id="dr_row_code"> <label class="col-md-2 control-label">图片验证</label> <div class="col-md-10"> <div class="input-group input-large"> <input class="form-control placeholder-no-fix" type="text" autocomplete="off" id="dr_code" name="code"> <div class="input-group-btn fc-code"> {dr_code(120, 35)} </div> </div> </div> </div> <div class="form-group" id="dr_row_sms"> <label class="col-md-2 control-label">短信验证</label> <div class="col-md-10"> <div class="input-group input-large"> <input class="form-control placeholder-no-fix" type="text" autocomplete="off" id="dr_shoujihao" name="data[shoujihao]"> <div class="input-group-btn"> <button class="btn blue" onclick="dr_ajax_url('/index.php?s=member&c=api&m=send_code&&code='+$('#dr_code').val()+'&id='+$('#dr_shoujihao').val())" type="button">获取手机验证码</button> </div> </div> </div> </div>
<input class="form-control placeholder-no-fix" type="text" autocomplete="off" id="dr_shoujihao" name="data[shoujihao]">
<button class="btn blue" onclick="dr_ajax_url('/index.php?s=member&c=api&m=send_code&&code='+$('#dr_code').val()+'&id='+$('#dr_shoujihao').val())" type="button">获取手机验证码</button>
shoujihao 为自定义字段名称
原教程中input 的id没有更改的话,会导致一直出手机号不正确的错误
学习一下
学习一下
!!!!!!!!!!
😍
学习一下
学习一下
!!!!!!!!!!
😍
学习学习,学习一下!!!!!!!!!!!!!