合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[wxs](https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxs/) 在wxml文件中调用函数 ~~~ //1.定义wxs var format = function(){ return "123"; } module.exports ={ format:format } ~~~ ~~~ //2.在wxml中使用 <wxs src="../../util/filter.wxs" module="tools"></wxs> <view> {{tools.format()}} </view> ~~~