小程序外部js怎么引入到page页面中并可以用this来调用
想问一下,小程序外部的js怎么引入到Page中,并且可以在page的方法里使用this来调用,
例如:
common.js
export default{
hello(){
return “hello hehe”
}
}
在小程序的一个Page页面中:
import common from “common.js”
Page({
data:{},
say(){
common .hello();// 这里我如果注入到Page里怎么写呢,想使用this来调用
}
})
10 回复