溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

layui提交post的方法

發(fā)布時間:2020-06-24 21:18:41 來源:億速云 閱讀:10039 作者:Leah 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)layui提交post的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

layui提交post:

table.js

//表格屬性:page,elem,url,cols
//列屬性:type,field,title
table.render({
        //1 開啟分頁
        page: true,
        //2 指定渲染的table容器
        elem: '#articleList',
        //3 異步訪問的路徑
        url: '../../user',
        //4 集合屬性
        cols: [[
            {type: 'checkbox'},
            //4.1   普通屬性
            {field: 'username', title: '用戶名稱',width:'11%'},
            //4.2   單選框?qū)傩?
            {field: 'sex',      title: '性別',    width:'11%'},
            //4.3   復(fù)選框?qū)傩?
            {field: 'status',   title: '狀態(tài)',    templet: '#status',width:'11%'},
            //4.4   日期屬性
            {field: 'updated',  title: '最近修改時間',width:'14%',
                //日期格式轉(zhuǎn)化
                templet: function createTime(d){
                            return new Date(parseInt(d.updated)).toLocaleString()
                 }
            },  
        ]]
        
        //4.2   數(shù)字條件判斷
        ,done:function(res,curr,count){
            $("[data-field='sex']").children().each(function(){
                //若選取元素為1
                if($(this).text() == '1'){
                     
                    $(this).text('男');
                //若選取元素為0
                }else if($(this).text() == '0'){
                    
                    $(this).text('女');
                }
            });
        }
    });

    //4.4   調(diào)用的日期格式轉(zhuǎn)化器
     Date.prototype.toLocaleString = function() {
        var y = this.getFullYear();
        var m = this.getMonth()+1;
        m = m<10?'0'+m:m;
        var d = this.getDate();
        d = d<10?("0"+d):d;
        var h = this.getHours();
        h = h<10?("0"+h):h;
        var M = this.getMinutes();
        M = M<10?("0"+M):M;
        var S=this.getSeconds();
        S=S<10?("0"+S):S;
        return y+"-"+m+"-"+d;
        /*+" "+h+":"+M+":"+S*/
    };

post.js

$.post(
    //1 異步提交的urL
    '${pageContext.request.contextPath}/user/add',

    //2 form表單以鍵值對形式傳輸
    data.field,

    //3 訪問后成功的回調(diào)函數(shù)
    function (data) {
        if (data > 0) {
            //3.1   彈窗提示
            layer.msg("添加成功!", {icon: 1});
            //3.2  獲得frame索引
            var index = parent.layer.getFrameIndex(window.name);
            //3.3   關(guān)閉當(dāng)前frame
            parent.layer.close(index);
            //3.4   刷新頁面
            window.parent.location.reload();
        }else{
            layer.msg("添加失敗!", {icon: 1});
        }
    }
);

更多l(xiāng)ayui框架教程:

layui使用form表單實現(xiàn)post請求頁面跳轉(zhuǎn)的方法

layui動態(tài)添加刪除表格,并獲取表格中的值

關(guān)于layui提交post的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI