車載後台 部分互動呼叫方式記錄

2021-08-11 14:17:55 字數 1542 閱讀 7048

郵箱正則

let regex =

/^([a-za

-z0-

9_-]

)+@(

[a-za

-z0-

9_-]

)+(.

[a-za

-z0-

9_-]

)+/;

使用者不能是特殊字元正則

let regname =

/^[\u4e00-\u9fa5a-za

-z0-

9_]$/g;

手機正則

let phonereg = /^1[3|4|5|8][0-9]\d$/g;
定時器關閉彈窗

let timer = settimeout(function

() ,1000);

$('#msgmodal').modal('hide');

},1000)

彈出錯誤資訊

this.$store.commit('showalert', );
更新左側選單

delete-customer>

this.$emit('refreshmenu');

錯誤資訊傳遞到父元件舉例

let regname = /^[\u4e00-\u9fa5a-za-z0-9_]$/g;

if (this.name !== "" && !regname.test(this.name)) );

return;

} if (this.email === "") );

return;

} let regemail = /^([a-za-z0-9_-])+@([a-za-z0-9_-])+(.[a-za-z0-9_-])+/;

if (!regemail.test(this.email)) );

return;

} if (this.password !== "" && this.password !== this.rpassword) );

return;

} let regphone = /^1[3|4|5|8][0-9]\d$/g;

if (this.phonenum !== "" && !regphone.test(this.phonenum)) );

return;

} this.$ajax

.userinfo

.adduser(params)

.then

((res) => );

this.$emit('refreshmenu');

let timer = settimeout(function () ,1000);

$('#msgmodal').modal('hide');

},1000)

} else );

}}, () => );

})

了解前後臺互動

新建user.jsp 在webcontent中放入bootstrap的檔案 在user.jsp引入jquery bootstrap 引入jstl的c標籤 展示列表會用到c foreach jsp目錄改下位址,放到webcontent下,因為寫的樣式也打算放在這裡,路徑短點 寫乙個美麗的login.j...

前後臺互動積累(一)

剛開始實習接觸商業專案,想積累點開發經驗,歡迎互相交流 一 前台通過js中的方法去後台拿到資料,封裝到map中,存入快取,然後再通過方法,呼叫資料 var businessstatusmap returndatamap sy.contextpath dictype getdictreemap pdw...

Ajax 前端與後台互動

整體的思路和邏輯是這樣的 我需要獲取使用者名稱和密碼,將使用者名稱和密碼組合成乙個物件,傳給後台伺服器後台伺服器會進行匹配將返回來的資料給前端,前端根據返回的資料判斷是否成功登陸。以下是通過ajax實現這個過程 url 代表登入功能需要訪問的介面 method 代表前端是需要向伺服器傳送資料 pos...