gpt4 book ai didi

javascript - 无法使用 Alfresco 的 Javascript API 将节点移动到它自己的树

转载 作者:行者123 更新时间:2023-11-30 11:33:12 24 4
gpt4 key购买 nike

我刚刚使用 Javascript API 编写了一个脚本,因此我可以将其用作空间的规则。每当一个文档进入一个空间时,它基本上会检查文档的名称以获取它将存储的父目录(文档的名称包含父文件夹名称),然后创建 future 的父目录(如果不存在),最后移动将文档放入其中。

我在最后一步遇到了麻烦。每当我尝试将文档移动到最近创建的文件夹中时,我都会收到以下错误:

Node has been pasted into its own tree.

到目前为止,这是我的代码,我认为它几乎是自动描述的:

var fileName= document.properties.name;
var fields = fileName.split('.');

var parentName= fields[0];
var newNode=space.childByNamePath(parentName);

if (newNode === null) { //create folder and move document into it

newNode=space.createFolder(parentName); //works
document.move(newNode); //I'm getting the error here

}else{ //folder already exists, just move document into it

document.move(newNode); //here too

}

如果我注释掉 document.move(newNode); 行,其他一切正常。父文件夹已成功创建,但显然文档一直存储在当前空间的根目录下,这不是我需要的。事实上,我需要将它移动到实际文件夹中。

我做错了什么吗?任何帮助将非常感激。谢谢。

更新: 事实上,我发现在 if 范围内调用 move() 是有效的,如果我注释掉了 else 范围内的另一个调用。因此错误是在 else move() 调用时抛出的。此外,如果我删除 else 子句并在 if 作用域后放置一个 move() 调用,它也会产生同样的错误。

最佳答案

您应该将规则作为后台进程运行,它会解决问题(“在后台运行规则”选项)。

关于javascript - 无法使用 Alfresco 的 Javascript API 将节点移动到它自己的树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45503232/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com