跳至主要內容

import 與 export

芒果凍布丁2025年3月29日小於 1 分鐘

目前,你無法在 KubeJS 中使用 import/export。然而,在你的腳本中定義的變數會暴露給所有相同類型的腳本。例如:

//priority: 10
let myList = [2, 8, 7]
console.log(myList) //[2, 8, 7]
//priority: 100
console.log(myList) // 這將無法運作 
myList.push(82)
console.log(myList) // [2, 8, 7, 82]
上次編輯於: 2025/3/29 上午5:04:42
貢獻者: Mango