微信小程序實現(xiàn)注冊登錄功能(表單校驗、錯誤提示)
更新時間:2019年12月10日 14:00:23 作者:我相信慢思考的力量
這篇文章主要介紹了微信小程序 實現(xiàn)注冊、登錄功能(表單校驗、錯誤提示),本文通過代碼給大家詳細介紹,需要的朋友可以參考下
口說無憑,實現(xiàn)效果如下

前端 部分
注冊功能
1、wxml文件
<view>
<view class="frm">
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
用戶名
</view>
</view>
<view class="ui-col ui-col-8 ui-col-align-center align-center valign-middle" style="flex: 0 0 66.66666666666666%;">
<view class="ui-col-content align-center valign-middle">
<input name="input" placeholder="請輸入用戶名" bindinput="username"></input>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
手機號碼
</view>
</view>
<view class="ui-col ui-col-8 ui-col-align-center align-center valign-middle" style="flex: 0 0 66.66666666666666%;">
<view class="ui-col-content align-center valign-middle">
<input name="input" placeholder="請輸入手機號碼" bindinput="tell"></input>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
密碼
</view>
</view>
<view class="ui-col ui-col-8 ui-col-align-center align-center valign-middle" style="flex: 0 0 66.66666666666666%;">
<view class="ui-col-content align-center valign-middle">
<input placeholder="設置密碼" password="true" bindinput="password"></input>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
確認密碼
</view>
</view>
<view class="ui-col ui-col-8 ui-col-align-center align-center valign-middle" style="flex: 0 0 66.66666666666666%;">
<view class="ui-col-content align-center valign-middle">
<input placeholder="設置密碼" password="true" bindinput="rpassword"></input>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
<button type="primary" bindtap="submitHandler">注冊</button>
</view>
</view>
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
<button bindtap="ureg">用戶登錄</button>
</view>
</view>
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
<button bindtap="treg">教師注冊</button>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
2、js文件
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Page({
data: {
name: "",
pass: "",
rpass: "",
tell: "",
isname: false,
istell: false,
ispass: false
},
treg: function treg() {
wx.navigateTo({
url: "./../teacher/tregdit"
});
},
ureg: function ureg() {
wx.navigateTo({
url: "./../ulogin/ulogin"
});
},
tell: function tell(e) {
this.setData({ tell: e.detail.value });
},
username: function username(e) {
this.setData({ name: e.detail.value });
},
password: function password(e) {
this.setData({ pass: e.detail.value });
},
rpassword: function rpassword(e) {
this.setData({ rpass: e.detail.value });
},
submitHandler: function submitHandler() {
var that = this;
if (that.data.name == "") {
wx.showModal({
title: "錯誤",
content: "用戶名不能為空"
});
that.isname = false;
} else {
that.isname = true;
}
if (that.data.pass != that.data.rpass || that.data.pass == "" || that.data.rpass == "") {
wx.showModal({
title: "錯誤",
content: "兩次密碼輸入不一致"
});
that.ispass = false;
} else {
that.ispass = true;
}
if (that.data.tell.length != 11) {
wx.showModal({
title: "錯誤",
content: "手機格式有誤"
});
that.istell = false;
} else {
that.istell = true;
}
if (that.istell && that.ispass && that.isname) {
// 提交
wx.request({
url: "http://localhost:8080/Teacher/uregedit.action", //接口地址
data: {
username: that.data.name,
password: that.data.pass,
tell: that.data.tell
},
method: "get",
header: {
"content-type": "application/json"
},
success: function success(res) {
//頁面跳轉
wx.navigateTo({
url: "./../tlogin/tlogin"
});
//頁面跳轉
}
});
// 提交
}
}
});
3、wxss文件
.frm {
margin-top: 200rpx;
}
登錄功能
1、wxml文件
<view>
<view class="frm">
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
用戶名
</view>
</view>
<view class="ui-col ui-col-8 ui-col-align-center align-center valign-middle" style="flex: 0 0 66.66666666666666%;">
<view class="ui-col-content align-center valign-middle">
<input name="input" placeholder="請輸入用戶名" bindinput="username"></input>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
密碼
</view>
</view>
<view class="ui-col ui-col-8 ui-col-align-center align-center valign-middle" style="flex: 0 0 66.66666666666666%;">
<view class="ui-col-content align-center valign-middle">
<input placeholder="設置密碼" password="true" bindinput="password"></input>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="ui-row ui-row-border-top ui-row-border-bottom" style="margin-bottom: 20px;height:40px;">
<view class="ui-col ui-col-border-right ui-col-align-center align-center valign-middle" style="flex:0 0 60px;">
<view class="ui-col-content align-center valign-middle">
</view>
</view>
<view class="ui-col" style="">
<view class="ui-col-content">
<view class="ui-row" style="height:40px;">
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
<button type="primary" bindtap="submitHandler">登錄</button>
</view>
</view>
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
<button bindtap="ureg">用戶注冊</button>
</view>
</view>
<view class="ui-col ui-col-4 ui-col-border-right ui-col-align-center align-center valign-middle" style="flex: 0 0 33.33333333333333%;">
<view class="ui-col-content align-center valign-middle">
<button bindtap="tlogin">老師登錄</button>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
2、js文件
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Page({
data: {
name: "",
pass: "",
isname: false,
ispass: false
},
ureg: function ureg() {
wx.navigateTo({
url: "./../user/reg"
});
},
tlogin: function tlogin() {
wx.navigateTo({
url: "./../tlogin/tlogin"
});
},
username: function username(e) {
this.setData({ name: e.detail.value });
},
password: function password(e) {
this.setData({ pass: e.detail.value });
},
submitHandler: function submitHandler() {
var that = this;
if (that.data.name == "") {
wx.showModal({
title: "錯誤",
content: "用戶名不能為空"
});
that.isname = false;
} else {
that.isname = true;
}
if (that.data.pass == "") {
wx.showModal({
title: "錯誤",
content: "密碼不能為空"
});
that.ispass = false;
} else {
that.ispass = true;
}
if (that.ispass && that.isname) {
// 提交
wx.request({
url: "http://localhost:8080/Teacher/ulogin.action", //接口地址
data: {
username: that.data.name,
password: that.data.pass
},
method: "get",
header: {
"content-type": "application/json"
},
success: function success(res) {
var info = res.data;
if (info == "fail") {
wx.showModal({
title: "錯誤",
content: "用戶名或者密碼輸入不正確"
});
} else {
//存儲數(shù)據(jù)
// 同步接口立即寫入
wx.setStorageSync("uname", that.data.name + "");
wx.setStorageSync("indentity", "user");
//頁面跳轉
//頁面跳轉
wx.switchTab({
url: "/pages/center/center"
});
console.log("頁面跳轉111");
}
}
});
// 提交
}
}
});
3、wxss文件
.frm {
margin-top: 200rpx;
}
我的后端是用java的ssh框架實現(xiàn)的
package cn.com.service;
import java.io.IOException;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import net.sf.json.JSONArray;
import org.apache.struts2.ServletActionContext;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
import com.opensymphony.xwork2.ModelDriven;
import cn.com.bean.User;
@Repository(value = "ulogin")
@Scope("prototype")
public class Ulogin implements ModelDriven<User> {
@Autowired
private SessionFactory sf;
@Autowired
private User u;
// 注冊功能
@Transactional
public String regedit() {
Session session = sf.getCurrentSession();
session.save(u);
return null;
}
// 登錄功能
@Transactional
public String login() {
Session session = sf.getCurrentSession();
String sql = "from User where username=? and password=?";
Query query = session.createQuery(sql);
query.setString(0, u.getUsername());
query.setString(1, u.getPassword());
User uu = (User) query.uniqueResult();
String info = null;
if (uu != null) {
info = "success";
} else {
info = "fail";
}
HttpServletResponse response = ServletActionContext.getResponse();
response.setCharacterEncoding("utf-8");
try {
response.getWriter().write(info);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
@Override
public User getModel() {
// TODO Auto-generated method stub
return u;
}
}
總結
以上所述是小編給大家介紹的微信小程序實現(xiàn)注冊登錄功能(表單校驗、錯誤提示),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!
相關文章
layer.msg()去掉默認時間,實現(xiàn)手動關閉的方法
今天小編就為大家分享一篇layer.msg()去掉默認時間,實現(xiàn)手動關閉的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-09-09
ES6入門教程之Iterator與for...of循環(huán)詳解
最近在學習ES6,剛剛看到Iterator和for...of循環(huán)這一章,所以想要跟大家略微分享一下,下面這篇文章主要給大家介紹了關于ES6入門學習中Iterator與for...of循環(huán)的相關資料,不足之處還望大家多多指正,需要的朋友們可以參考學習。2017-05-05
關于JavaScript中parseInt()的一個怪異行為解決
parseInt()是內(nèi)置的?JS?函數(shù),用于解析數(shù)字字符串中的整數(shù),下面這篇文章主要給大家介紹了關于JavaScript中parseInt()的一個怪異行為解決,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下2022-12-12
10個很少使用的JavaScript?Console方法分享
你一定聽說過?console.log()?,而且可能一直在使用它,在本文中,我們將探討一些最有用的控制臺方法,以及它們在數(shù)據(jù)可視化、調試等方面的用途,感興趣的小伙伴可以學習一下2023-09-09

