Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 514 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 514 Bytes

wxs处理方法

  1. 微信小程序wxs
  2. 支付宝wxs

wxs文件处理步骤

  1. {{name}}.wxs全部变成{{name}}.sjs
  2. 支付宝不支持module.exports写法
<!-- 微信 -->
module.exports = {
}

<!-- 支付宝 -->
export default {
	
}
  1. 支付宝不支持require
<!-- 微信 -->
var tools = require("./tools.wxs");

<!-- 支付宝 -->
import tools from './tools.sjs'