切换到电脑端
跳转到我的求职导航
小程序|公众号

小程序-微信开发注意事项

1、基本组件viewtextbutton2、this.setData({xxx:"yyy"});取值this.data.xxx3、导出自己的模块varDoSomeThing=function(){//TODO}module.exports={doSomeThing:DoSomeThing}4、varxxx=require("../../xxx.js");//加载第三方模块或自己的封装模块(模块化)5、view::beforeview::after6、getApp()7、不要在onLaunch()中调用getCurrentPages(),注意onLaun
阅读全文
小程序|公众号

小程序-组件-循环和判断

<blockwx:for="{{info}}"wx:for-item="item"wx:key="list">//wx:key="list"写其他值也行但是要有<navigatorclass='info-item'url="/pages/module/infos/info-detail/info-detail?id={{item.id}}&url={{item.url}}&title={{item.title}}"hover-class="navigator-hover">//hover-class="navig
阅读全文
小程序|公众号

小程序-js-宽度单位转换-px转rpx

//不一定只适用于宽度,可能可以作为一个普通的单位转换方法functiongetPxToRpxWidth(pxComponentWidth){try{varres=wx.getSystemInfoSync()console.log(res.model)console.log(res.pixelRatio)console.log(res.windowWidth)console.log(res.windowHeight)console.log(res.language)console.log(res.version)console.log(res.plat
阅读全文
本文目录
    Loading...