1
2
3
4
5
6
7
export function hello(name) {
// return "wow~ your are 叼毛 open 了 Pandora" ;
return { message: "wow~ your are 叼毛 open 了 Pandora" };
// return eval("window.open('https://www.jd.com')") // 不允许
// return window.alert.call(null, '123') // nodejs 环境没有window
// return window // nodejs 环境没有window = null
}