2020/8/31

微信小程序sup,sub

sup{      font-size: 10px;      vertical-align:text-top;}sub{      font-size: 10px;     &n…

  • 微信小程序
  • 2020/8/31
  • 1,157
  • 2020/8/28

    微信小程序页面传参

    wx.navigateTo({ url: '/packageTab1/pages/cangchu/cangku?xxx=xxx',  // 通过url传到跳转页面 }) 跳转后的页面 onLoad: function (options) {     xxx = options.xxx },

  • 微信小程序
  • 2020/8/28
  • 1,112
  • 2020/8/6

    微信小程序地图导航

     wx.getLocation({       type: 'gcj02', //返回可以用于wx.openLocation的经纬度       success (res) { &nbs…

  • 微信小程序
  • 2020/8/6
  • 587
  • 2020/7/27

    nginx: [warn] the “ssl” directive is deprecated, use the “listen … ssl” directive instead in /usr/local/nginx/conf/vhosts/sjgl.cd-trans.cn.conf:11

    使用listen 443 ssl,删除ssl on

  • 微信小程序
  • 2020/7/27
  • 962
  • 2020/7/24

    微信小程序分包

    在app.json添加如下信息 "subPackages": [     {         "root": "packageTab1",//包名(文件夹名称) &…

  • 微信小程序
  • 2020/7/24
  • 886
  • 2020/7/22

    微信小程序button设置宽度无效

    app.json删除 "style":"v2"

  • 微信小程序
  • 2020/7/22
  • 641
  • 2020/7/16

    微信小程序隐藏view

    思路: wxss中定义class .canvas-hide{display:none} js中定义变量 canvasHide:"" wxml中动态获取class变量 <view class="canvas-show-bar {{canvasHide}}"></view> js…

  • 微信小程序
  • 2020/7/16
  • 649