🎨 新建文档名模板
改为 新建文档存放位置
并支持设置路径 https://github.com/siyuan-note/siyuan/issues/4494
This commit is contained in:
parent
551cbb8c18
commit
2982ac75dd
1 changed files with 2 additions and 2 deletions
|
@ -53,13 +53,13 @@ export const newFile = (notebookId?: string, currentPath?: string, open?: boolea
|
|||
}
|
||||
});
|
||||
}
|
||||
fetchPost("/api/filetree/getDocNameTemplate", {notebook: notebookId}, (data) => {
|
||||
fetchPost("/api/filetree/getDocCreateSavePath", {notebook: notebookId}, (data) => {
|
||||
const id = Lute.NewNodeID();
|
||||
const newPath = pathPosix().join(getDisplayName(currentPath, false, true), id + ".sy");
|
||||
if (paths) {
|
||||
paths[paths.indexOf(undefined)] = newPath;
|
||||
}
|
||||
if (!validateName(data.data.name)) {
|
||||
if (!validateName(data.data.path)) {
|
||||
return;
|
||||
}
|
||||
fetchPost("/api/filetree/createDoc", {
|
||||
|
|
Loading…
Add table
Reference in a new issue