分享者:无名,来自soswen
下载官方示例代码https://mp.weixin.qq.com/debug/wxadoc/dev/demo/aes-sample.zip
找到PHP
官方PHP代码都有bom
所以要我们自己去除下bom
可以下载Notepad++,打开文件然后选择,格式,转为UTF-8无BOM编码格式
二:class里定义的事件在运行时候找不到的解决办法
分享者:7,来自原文地址
先定义一个Base基类
-
class Base {
-
constructor() {
-
// 把类中的的function取出来,赋值到实例中
-
const moduleFns = Object.getOwnPropertyNames(this.__proto__);
-
moduleFns.map(propertyName => {
-
if (propertyName !== 'constructor') {
-
this[propertyName] = this[propertyName];
-
}
-
});
-
}
-
}
-
module.exports = Base;
业务代码如下
-
<view bindtap="bindTapTab">view>
js
-
const Base = require("base");
-
class Home extends Base {
-
constructor() {
-
super()
-
}
-
customFn() {}
-
bindTapTab() {}
-
onLoad() {
-
super.onLoad();
-
this.customFn();
-
}
-
}
-
Page(new Home());
|