小程序的wxs功能可以让wsmxl可以调用和编写js,基本上wxs和JS无关系,只是语法形式很相似。 如下写了两个关于时间的函数,并将它们导出, <wxs module="m1"> var getMax = function(flightDate) { var now = getDate().getDate() var flDate = getDate(flightDate).getDate() if( now <flDate ){ return '+1' }else{ return '' } } var formartTime = function(flightDate,format){ if(flightDate){ var realDate = getDate(flightDate) function timeFormat(num) { return num <10 ? '0' + num : num } var date = { "Y": timeFormat(realDate.getFullYear()), "M": timeFormat(realDate.getMonth() + 1), "d": timeFormat(realDate.getDate()), "h": timeFormat(realDate.getHours()), "m": timeFormat(realDate.getMinutes()), "s": timeFormat(realDate.getSeconds()), "q": Math.floor((realDate.getMonth() + 3) / 3), "S": realDate.getMilliseconds(), } if (!format) { format = "yyyy-MM-dd hh:mm:ss" } if( format == 'hh:mm' ){ return date.h+':'+date.m }else{ return date.h+':'+date.m } }else{ return false } } module.exports.getMax = getMax module.exports.formartTime = formartTime </wxs> 可在页面添加如下使用: m1.formartTime() m1.getMax()小程序开发使用JS+CSS+HTML5语言,小程序是基于微信平台的轻量级应用,它的开发是应用微信提供的小程序前端规范,结合企业自己开发的应用后端来制作的。
1、微信小程序开发所需要的语言比较特别,首先介绍一下需要使用到的文件类型大致分为:WXML(WeiXin Mark Language 微信标记语言)、WXSS(WeiXin Style Sheet 微信样式表)、JS(JavaScript 小程序的主体);【点击查看小程序开发底价】
2、首先是WXML,它与Android开发中的界面XML描述文件比较像,适合于程序界面的构建;
3、WXSS与前端中使用的CSS在语言上几乎没有差别可以直接通用;
4、JS文件这个与前段中使用的JS也是几乎没有区别,当然针对微信小程序新增了一些微信的API借口,并去除了一些没有必要的功能;.
想要了解更多有关小程序开发的相关信息,推荐咨询猪八戒网。猪八戒网成立于2006年,是中国领先的企业服务平台,服务交易独角兽企业。猪八戒网现有注册用户2800万、在全国布局线下数字化创业园区超过100个。十余年来,累计有10万余个人通过平台孵化成长为公司,超过100万人通过平台实现灵活就业,千万企业通过平台解决专业服务需求;专业性值得选择。