如何获取 webscript url 参数
how to get webscript url parameters
我有一个网络脚本,当我调用这个网络脚本时,我试图在 url 上获取两个参数 filename
和 content
,但是当我用这个 url http://localhost:8080/alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files?filename=testFileName="testFileName"&&content="testContent"
我得到这个错误:
The Web Script /alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files has responded with a status of 404 - Not Found.
404 Description: Requested resource is not available.
Message: 06280086 Script url /fr/starxpert/workflows-repository/create-save-workflow-files does not map to a Web Script.
有我的网页脚本文件:
createAndSaveWorkflowFile.get.desc.xml:
<webscript>
<shortname>Creation and save new workflow file</shortname>
<description>create an workflow JSON file and save it into StarXpert Workflow repository</description>
<url>/fr/starxpert/workflows-repository/create-save-workflow-files/{filename}/{content}</url>
<format default="json">extension</format>
<authentication>user</authentication>
<family>StarXpert</family>
</webscript>
createAndSaveWorkflowFile.get.js:
var fileName=args.filename;
var properties=args.content;
logger.log(fileName);
model.filename=fileName;
model.properties=properties;
createAndSaveWorkflowFile.get.json.ftl:
{
"arguments":[
"fileName":"${fileName}",
"properties":"${properties}"
]
}
你能告诉我我做错了什么吗,或者给我一个例子,说明如何在 url 上使用两个参数调用网络脚本,然后在网络脚本上获取这些参数。
您已声明您的 URL 使用路径参数:
/fr/starxpert/workflows-repository/create-save-workflow-files/{filename}/{content}
但是当您调用脚本时,您使用的是查询字符串参数:
/alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files?filename=testFileName="testFileName"&&content="testContent"
您的控制器采用查询字符串参数,因此我假设这就是您的意图。
此外,你的 URL 看起来不对劲。
要使用查询字符串参数,您的 URL 应该是:
/alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files?filename=testFileName&content=testContent
如果您希望您的描述符与之匹配,您需要将其更改为:
<url>/fr/starxpert/workflows-repository/create-save-workflow-files?filename={filename}&content={content}</url>
请注意,符号已转义,因此 XML 仍然有效。
我有一个网络脚本,当我调用这个网络脚本时,我试图在 url 上获取两个参数 filename
和 content
,但是当我用这个 url http://localhost:8080/alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files?filename=testFileName="testFileName"&&content="testContent"
我得到这个错误:
The Web Script /alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files has responded with a status of 404 - Not Found.
404 Description: Requested resource is not available.
Message: 06280086 Script url /fr/starxpert/workflows-repository/create-save-workflow-files does not map to a Web Script.
有我的网页脚本文件:
createAndSaveWorkflowFile.get.desc.xml:
<webscript>
<shortname>Creation and save new workflow file</shortname>
<description>create an workflow JSON file and save it into StarXpert Workflow repository</description>
<url>/fr/starxpert/workflows-repository/create-save-workflow-files/{filename}/{content}</url>
<format default="json">extension</format>
<authentication>user</authentication>
<family>StarXpert</family>
</webscript>
createAndSaveWorkflowFile.get.js:
var fileName=args.filename;
var properties=args.content;
logger.log(fileName);
model.filename=fileName;
model.properties=properties;
createAndSaveWorkflowFile.get.json.ftl:
{
"arguments":[
"fileName":"${fileName}",
"properties":"${properties}"
]
}
你能告诉我我做错了什么吗,或者给我一个例子,说明如何在 url 上使用两个参数调用网络脚本,然后在网络脚本上获取这些参数。
您已声明您的 URL 使用路径参数:
/fr/starxpert/workflows-repository/create-save-workflow-files/{filename}/{content}
但是当您调用脚本时,您使用的是查询字符串参数:
/alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files?filename=testFileName="testFileName"&&content="testContent"
您的控制器采用查询字符串参数,因此我假设这就是您的意图。
此外,你的 URL 看起来不对劲。
要使用查询字符串参数,您的 URL 应该是:
/alfresco/service/fr/starxpert/workflows-repository/create-save-workflow-files?filename=testFileName&content=testContent
如果您希望您的描述符与之匹配,您需要将其更改为:
<url>/fr/starxpert/workflows-repository/create-save-workflow-files?filename={filename}&content={content}</url>
请注意,符号已转义,因此 XML 仍然有效。