這篇文章主要介紹了微信小程式PHP後端form表單提交實例詳解的相關資料,需要的朋友可以參考下
微信小程式PHP後端form表單
1.小程式相對於之前的WEB PHP建置站來說,個人理解為只是將web放到了微信端,用小程式固定的格式前前端進行佈局、事件觸發和資料的輸送和讀取,伺服器端可以用任何後端語言寫,但是所有的資料都要以JSON的形式傳回給小程式。
2.昨天寫了登入註冊、忘記密碼功能,他們實質上都是一個表單提交作業。 因此就拿註冊功能來寫這個例子。
3.目錄圖
js檔案是邏輯控制,主要是它發送請求和接收數據,
#json 用於此頁面局部配置並且覆蓋全域app.json配置,
wxss用於頁面的樣式設置,
wxml就是頁面,相當於html
4.樣式和json檔案暫時不管了,我只是想回顧一下form表單的提交
5.Wxml檔案程式碼
<view class="load-head"> <image src="../../images/return.png" /> 注册 </view> <view class="login"> <form bindsubmit="formSubmit"> <view class="field clearfix"> <label for="name"><image src="../../images/phone.png" /></label> <input id="name" name="mobile" class="login-input" type="text" placeholder="请输入手机号" /> </view> <view class="field clearfix"> <label for="password"><image src="../../images/code.png" /></label> <input id="password" class="login-input" type="password" placeholder="请输入验证码" /> <button class="get-code" hover-class="code-hover">获取验证码</button> </view> <view class="field clearfix"> <label for="password"><image src="../../images/password.png" /></label> <input id="password" name="password" class="login-input" type="password" placeholder="请设置6-20位登录密码" /> </view> <view class="field clearfix"> <label for="repassword"><image src="../../images/password.png" /></label> <input id="repassword" name="repassword" class="login-input" type="password" placeholder="请输入确认密码" /> </view> <button class="btn_login" formType="submit">注册</button> </form> <view class="reg_forget clearfix"> <navigator url="../login/index" class="btn_reg">登录</navigator> <navigator url="../forget/index" class="btn_forget">忘记密码</navigator> </view > </view>
# 6.其中幾個關鍵點需要理解
a.Form表單,需要綁定一個submit事件,在小程式中,屬性為bindsubmit,
bindsubmit=”formSubmit” 這裡的屬性值formSubmit,命名可以為符合規範的任意值,相當於以前html中的 onsubmit=”formSubmit()”,是函數名,提交的時候觸發formSubmit這個函數事件,這個函數寫在js中。
b.其他的屬性和之前的HTML差不多,注意的是,表單一定要有name=“value”,後端處理和以前一樣,例如name=”username” PHP可以用$_POST[ 'username']來接收。
C.由於小程式沒有input submit這個按鈕,所以在每個form表單中都要有一個提交按鈕,
3993c6f6226c20b67508b2f5faca1f97註冊65281c5ac262bf6d81768915a4a77ac0,這個按鈕就是用來開啟提交事件的。
7.index.js程式碼
Page({ data: { }, formSubmit: function(e) { if(e.detail.value.mobile.length==0||e.detail.value.password.length==0){ wx.showToast({ title: '手机号码或密码不得为空!', icon: 'loading', duration: 1500 }) setTimeout(function(){ wx.hideToast() },2000) }else if(e.detail.value.mobile.length != 11){ wx.showToast({ title: '请输入11位手机号码!', icon: 'loading', duration: 1500 }) setTimeout(function(){ wx.hideToast() },2000) }else if(e.detail.value.password.length <6 ||e.detail.value.password.length>20){ wx.showToast({ title: '请输入6-20密码!', icon: 'loading', duration: 1500 }) setTimeout(function(){ wx.hideToast() },2000) }else if(e.detail.value.password != e.detail.value.repassword){ wx.showToast({ title: '两次密码输入不一致!', icon: 'loading', duration: 1500 }) setTimeout(function(){ wx.hideToast() },2000) }else{ wx.request({ url: 'https://shop.yunapply.com/home/Login/register', header: { "Content-Type": "application/x-www-form-urlencoded" }, method: "POST", data:{mobile:e.detail.value.mobile,password:e.detail.value.password}, success: function(res) { if(res.data.status == 0){ wx.showToast({ title: res.data.info, icon: 'loading', duration: 1500 }) }else{ wx.showToast({ title: res.data.info,//这里打印出登录成功 icon: 'success', duration: 1000 }) } } }) } }, })
#8.要注意的是
Page ()這個方法是必須有的,裡面放置js對象,用於頁面載入的時候,呈現效果
data: {},數據對象,設定頁面中的數據,前端可以透過讀取這個對象裡面的數據來顯示出來。
formSubmit: function 小程式中方法都是方法名稱:function(),其中function可以傳入一個參數,作為觸發目前時間的物件
下面是函數的執行,由於驗證太多,我只拿一部分出來理解。
if(e.detail.value.mobile.length==0||e.detail.value.password.length==0){ wx.showToast({ title: '手机号码或密码不得为空!', icon: 'loading', duration: 1500 })
這裡的e,就是當前觸發事件的對象,類似於html onclick=“foo(this)”this對象,小程式封裝了許多內置的呼叫方法,e.detail.value.mobile 就是目前物件name=”mobile」的物件的值e.detail.value.mobile.length就是這個值的長度
# showToast類似JS中的alert ,彈出框,title 是彈出框的顯示的信息,icon是彈出框的圖標狀態,目前只有loading 和success這兩個狀態。 duration是彈出框在螢幕上顯示的時間。
9.重點來了
wx.request({ url: 'https://shop.com/home/Login/register', header: { "Content-Type": "application/x-www-form-urlencoded" }, method: "POST", data:{mobile:e.detail.value.mobile,password:e.detail.value.password}, success: function(res) { if(res.data.status == 0){ wx.showToast({ title: res.data.info, icon: 'loading', duration: 1500 }) }else{ wx.showToast({ title: res.data.info,//这里打印出登录成功 icon: 'success', duration: 1000 }) } }, fail:function(){ wx.showToast({ title: '服务器网络错误!', icon: 'loading', duration: 1500 }) } })
wx.request({})是小程式發起https請求,注意http是不行的。
這裡
a.url是你要求的網址,例如以前在前端,POST表單中action='index.php',這裡的index.php是相對路徑,而小程式請求的網址必須是網路絕對路徑。
例如:https://shop.com/home/Login/register
b.
header: { "Content-Type": "application/x-www-form-urlencoded" },
#由於POST和GET傳送資料的方式不一樣,POST的header必須是
"Content-Type": "application/x-www-form-urlencoded"
#GET的header可以是'Accept': 'application/json'
c.一定要寫明method:“POST” 預設為“GET”,保持大寫
#data:{ mobile:e.detail.value.mobile,password:e.detail.value.password},
這裡的data就是POST給伺服器端的資料以{name:value}的形式傳送
d.成功回呼函數
success: function(res) { if(res.data.status == 0){ wx.showToast({ title: res.data.info, icon: 'loading', duration: 1500 }) }else{ wx.showToast({ title: res.data.info, icon: 'success', duration: 1000 }) } }
e.success:function()是請求狀態成功觸發是事件,也就是200的時候,注意,請求成功不是操作成功,請求只是這個程式到伺服器端這條線的通的。
fail:function()就是網路請求不成功,觸發的事件。
f.
if(res.data.status == 0){ wx.showToast({ title: res.data.info, icon: 'loading', duration: 1500 }) }else{ wx.showToast({ title: res.data.info,//这里打印出登录成功 icon: 'success', duration: 1000 }) }
#這裡的一段程式碼是和PHP後端程式有關係的,具體流程是這樣的,
1.POST通过数据到https://shop.com/home/Login/register这个接口,用过THINKPHP的就会知道是HOME模块下的Login控制下的register方法
2.register方法根据POST过来的数据,结合数据库进行二次验证,如果操作成功,返回什么,如果操作失败,返回什么
3.后端PHP代码如下:
控制器 LoginController.class.php
/** * 用户注册 */ public function register() { if (IS_POST) { $User = D("User"); if (!$User->create($_POST, 4)) { $this->error($User->getError(),'',true); } else { if ($User->register()){ $this->success('注册成功!','',true); }else{ $this->error('注册失败!','',true); } } } }
模型
UserModel.class.php 的register方法
public function register() { $mobile = I('post.mobile'); $password = I('post.password'); $res = D('User')->add(array( 'mobile'=> $mobile, 'password'=>md5($password), 'modifytime'=>date("Y-m-d H:i:s") )); return $res; }
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
以上是在微信小程式中PHP後端form表單的提交的詳細內容。更多資訊請關注PHP中文網其他相關文章!