透過集合功能整理內容
你可以依據偏好儲存及分類內容。
blockly > 變數 > renameVariable
Variables.renameVariable() 函式
開啟提示,讓使用者輸入變數的新名稱。如果新名稱有效,就會觸發重新命名作業。或在發生衝突時重新提示。
Signature:
export declare function renameVariable(workspace: Workspace, variable: IVariableModel<IVariableState>, opt_callback?: (p1?: string | null) => void): void;
參數
參數 |
類型 |
說明 |
工作區 |
Workspace |
要重新命名變數的工作區。 |
機動 |
IVariableModel<IVariableState> |
要重新命名的變數。 |
opt_callback |
(p1?: string | null) => void |
(選用) 回呼。系統會傳遞可接受的新變數名稱,如果要終止變更 (取消按鈕),則會傳遞空值,如果選擇現有變數,則會傳遞未定義的值。 |
退貨:
void
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-25 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-07-25 (世界標準時間)。"],[[["The `renameVariable` function initiates a user prompt to change a variable's name within a Blockly workspace."],["It validates the new name, triggering a rename if valid or prompting again if a name collision occurs."],["The function accepts the workspace, the variable to rename, and an optional callback function as parameters."],["This optional callback function receives the accepted new name, null if canceled, or undefined if an existing variable is selected."]]],[]]