https://developers.weixin.qq.com/miniprogram/dev/framework/runtime/skyline/worklet.html
示例一:运行在 UI 线程
function someWorklet(greeting) {
'worklet'; //////////////////////////////// 这行代码有什么用,为什么要这样写?
console.log(greeting, 'On the UI thread');
}
// 运行在 JS 线程
someWorklet('hello')
// 运行在 UI 线程
runOnUI(someWorklet)('hello skyline')
’worklet' 是声明为 worklet 函数,经过编译后会生成一些转换代码,用于跑在 UI 线程