真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

微信小程序中wx:for遍歷循環(huán)使用的示例分析

這篇文章將為大家詳細講解有關微信小程序中wx:for遍歷循環(huán)使用的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)專注于墨江網站建設服務及定制,我們擁有豐富的企業(yè)做網站經驗。 熱誠為您提供墨江營銷型網站建設,墨江網站制作、墨江網頁設計、墨江網站官網定制、小程序制作服務,打造墨江網絡公司原創(chuàng)品牌,更為您提供墨江網站排名全網營銷落地服務。

效果圖如下:

微信小程序中wx:for遍歷循環(huán)使用的示例分析

實現(xiàn)代碼如下:

type.js:

// pages/type/type.js
Page({

 /**
  * 頁面的初始數(shù)據
  */
 data: {
  types: ""
 },
 editType: function (e) {
   var typeId = e.currentTarget.dataset['id'];
   console.log("edit:"+typeId);


  wx.navigateTo({
   url: '../type_edit/type_edit?typeId=' + typeId
  })
 },
 delType:function(e){

  var typeId = e.currentTarget.dataset['id'];

  console.log("delete:"+typeId)


  wx.showModal({
   title: '提示',
   content: '確認要刪除該支出類型?',
   success: function (res) {
    if (res.confirm) {
     console.log('用戶點擊確定')

     wx.request({

      url: getApp().globalData.urlPath + "spendingType/delete",
      method: "POST",
      data: {
       typeId: typeId
      },
      header: {
       "Content-Type": "application/x-www-form-urlencoded"
      },
      success: function (res) {
       console.log(res.data.code);
       if (res.statusCode == 200) {

        //訪問正常
        if (res.data.code == "000000") {
         wx.showToast({
          title: "刪除成功,返回支出類型列表",
          icon: 'success',
          duration: 3000,
          success: function () {

           wx.navigateTo({
            url: '../type/type'
           })
          }
         })

        }
       } else {

        wx.showLoading({
         title: '系統(tǒng)異常',
         fail
        })

        setTimeout(function () {
         wx.hideLoading()
        }, 2000)
       }

      }
     })


    } else if (res.cancel) {
     console.log('用戶點擊取消')
    }
   }
  })

 },
 /**
  * 生命周期函數(shù)--監(jiān)聽頁面加載
  */
 onLoad: function (options) {
  wx.setNavigationBarTitle({

   title: "支出類型列表"

  })
  var userCode = wx.getStorageSync('userId');
  var self = this
  wx.request({
   url: getApp().globalData.urlPath + "spendingType/types",//json數(shù)據地址 
   data: {
    userCode: userCode
   },
   headers: {
    "Content-Type": "application/x-www-form-urlencoded"
   },
   success: function (res) {
    self.setData({

     types: res.data.data

    });//等同于

   }
  })
 },

 /**
  * 生命周期函數(shù)--監(jiān)聽頁面初次渲染完成
  */
 onReady: function () {

 },

 /**
  * 生命周期函數(shù)--監(jiān)聽頁面顯示
  */
 onShow: function () {

 },

 /**
  * 生命周期函數(shù)--監(jiān)聽頁面隱藏
  */
 onHide: function () {

 },

 /**
  * 生命周期函數(shù)--監(jiān)聽頁面卸載
  */
 onUnload: function () {

 },

 /**
  * 頁面相關事件處理函數(shù)--監(jiān)聽用戶下拉動作
  */
 onPullDownRefresh: function () {

 },

 /**
  * 頁面上拉觸底事件的處理函數(shù)
  */
 onReachBottom: function () {

 },

 /**
  * 用戶點擊右上角分享
  */
 onShareAppMessage: function () {

 }
})

type.js沒什么好說的,如果要說,只能說這個onLoad這里的onLoad就相當于js中的onload方法,當進入該視圖時,默認全局加載一次。

type.wxml:


 
  添加支出類型信息
 
 
  \n
 
 
  
   列表數(shù)據
   \n
  

    
     類型名
     創(chuàng)建時間
     修改時間
     備注
     操作
    
    
     
      {{item.typeName}}
      {{item.createDate}}
      {{item.modifyDate}}
      {{item.remark}}
      
       編輯
       \n
       \n
       刪除
      
     
    
   
 

遍歷循環(huán)主要使用的是wx:for。如果要類比的話,我覺得jstl跟這個神似。先來看看jstl,代碼如下:


    
        ${u.cid}
        ${u.cname}
        ${u.age }
    

var相當于我可以任意定義一個簡要字母來調用item(item相當于type.js中的data或self.setData存儲的數(shù)據)。

如果你還不明白的話,可以聯(lián)系到$.each,代碼如下:

$.each(classroom_list, function(i, c) {

          rows = rows + "";
          rows = rows + "" + c.id + "";
          rows = rows + "" + c.nickname + "";
          rows = rows + "查看詳情";
          rows = rows + ""
});

type.wxss:

.table {
 border: 1px solid #ccc;
 font-size: 28rpx;
 background: #fff;
 border-right: none;
}
 
.tr{
 display: flex;
 justify-content: space-between;
}
 
.td {
 text-align: center;
 border: 1px solid #ccc;
 display: inline-block;
 border-left: none;
 border-bottom: none;
 padding: 10rpx 1%;
 width: 12%;
}
 
.thead .td{
 border-top: none;
 height: 140rpx;
 line-height: 50rpx;
}

關于“微信小程序中wx:for遍歷循環(huán)使用的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


當前標題:微信小程序中wx:for遍歷循環(huán)使用的示例分析
路徑分享:http://weahome.cn/article/gphheh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部