剛接觸微信就要做一個表單提交功能,需求是這樣的只能在資料庫中存在的手機號碼看到表單。以下透過本文跟大家分享使用YII2框架實現微信公眾號中表單提交功能,有興趣的朋友一起看看吧
剛接觸微信,要做一個在手機上的表單提交功能。
需求有這些:
只能看到資料庫中存在的手機號碼表單。
表單可以重複提交。
第一次進入表單需要驗證
分享出去的頁面,別人進入後也需要驗證。
因為每個手機在同一個公眾號當中的openid是唯一性的。所以在手機查看這個表單頁面的時候,就將這個openid存到資料庫中,方便下次提交可以驗證。
下面是我的程式碼。使用的是YII2框架。
Controller
//获得回调函数 public function actionCallback($code,$state){ $model = new tp_tstz_proposal(); $model1= new tp_tstz_staff(); // 微信开放平台网站应用的appid和秘钥secret $appid = ''; $secret = ''; $curl = new curl\Curl(); //获取access_token $wxresponse = $curl->get('https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . $appid . '&secret=' . $secret . '&code=' . $code . '&grant_type=authorization_code'); $wxresult = json_decode($wxresponse); if(isset($wxresult->errcode) && $wxresult->errcode > 0){ //分享出去,重新认证 return $this->render('login'); // 向微信请求授权时出错,打印错误码 // echo json_encode($wxresult); // exit; } $openid=$wxresult->openid; $result=$model1::find()->where(['openid'=>$openid])->one(); //如果OPENID存在就去表单 if(count($result)>0){ $key=123456; return $this->render('view',['model'=>$model,'key'=>$key]); }else{ return $this->render('tel',['model'=>$model1,'openid'=> $openid]); } }`
view圖層
很簡單的重新導向頁面
##
header('Location:https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx8ba95fc51672e844&redirect_uri=http%3a%2f%2fjifen.wendu.cn%2fts%2fweb%2findex.php%3fr%3dproposal%2fcallback&response_type=code&scope=snsapi_base&state=123asd#wechat_redirect');返回的路徑就是進入controller的路徑。 在表單頁面,我先做了一個簡單的認證
if(!isset($key)){ header('Location:http://jifen.wendu.cn/ts/web/index.php?r=say/login'); }判斷是否是從分享的頁面來的,如果是從分享的頁面來就要重新驗證,判斷是否在資料庫中有這支手機的openid。沒有就進行手機號碼的驗證。
以上是使用YII2框架開發實現微信公眾號中表單提交功能教學詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!