低质量文档问题
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')