1. 程式人生 > >微信小程序隱藏和顯示切換

微信小程序隱藏和顯示切換

getc one 應用 隱藏 ont page public center app

微信小程序的菜單隱藏和顯示切換小例子,菜單是請求服務器獲取的內容。

index.wxml文件代碼如下

<!--index.wxml-->
<view class="container" bindtap=‘hidemenu‘>
  <view class=‘header‘>
    <image src=‘/img/menu.png‘ style=‘width:20px;height:20px;padding-right:10px;‘ bindtap=‘menu‘></image>
    <text>{{title}}</text
> </view> <view class=‘category_list {{showview ? "hide" : "show"}}‘> <navigator wx:for="{{category}}"> {{item.title}}({{item.count_post}}) </navigator> </view> </view>

index.wxss代碼如下

/**index.wxss**/
.header{
  display: flex;
  flex-direction: row
; background-color: #1AAD19; color: white; padding-top: 10rpx; padding-bottom: 10rpx; } .category_list{ background-color: #1AAD19; width: 200rpx; text-align: center; color: white; } .category_list navigator{ padding-top: 20rpx; padding-bottom: 20rpx; } .hide{ display: none; } .show{ display
: block; }

index.js代碼如下

//index.js
//獲取應用實例
const app = getApp()

Page({
  data: {
    title: ‘歡迎來到社區‘,
    showview:true,
  },
  //事件處理函數
  onLoad: function () {
    var that = this
    wx.request({
      url: ‘http://127.0.0.1/lss/public/api/index/getcategory‘,
      success:function(res){
        that.setData({
          category: res.data.data
        })
      }
    })
  },
  menu:function(options){
    var that = this
    that.setData({
      showview: that.data.showview ? false : true,
    })

  }
})

技術分享圖片


默認隱藏,點擊顯示,再點擊隱藏。

微信小程序隱藏和顯示切換