我尝试使用此documentation在服务器端JavaScript下安装,并在下面保存为rest-sjs
function insertTimestamp(context, params, content)
{
if (context.inputType.search('json') >= 0) {
var result = content.toObject();
if (context.acceptTypes) { /* read */
result.readTimestamp = fn.currentDateTime();
} else { /* write */
result.writeTimestamp = fn.currentDateTime();
}
return result;
} else {
/* Pass thru for non-JSON documents */
return content;
}
};
exports.transform = insertTimestamp;
我尝试使用下面的curl cmd推送它:
curl --anyauth --user public\admin:admin -X PUT -i --data-binary @"C:/Users/name/Desktop/rest.sjs" -H "Content-type: application/vnd.marklogic-javascript" 'http://localhost:9963/v1/config/transforms/js-example'
当我使用localhost:9963
并转到/v1/config/transforms
时,我可以看到:
<rapi:transforms xmlns:rapi="http://marklogic.com/rest-api">
<rapi:transform>
<rapi:name>rest-tsm</rapi:name>
<rapi:source-format>javascript</rapi:source-format>
<rapi:transform-parameters/>
<rapi:transform-source>/v1/config/transforms/rest-tsm</rapi:transform-source>
</rapi:transform>
</rapi:transforms>
但是当我通过模块/v1/config/transforms/rest-tsm
时,我看到了错误响应:
<error-response xmlns="http://marklogic.com/xdmp/error">
<status-code>406</status-code>
<status>Unacceptable Type</status>
<message-code>REST-UNACCEPTABLETYPE</message-code>
<message>
REST-UNACCEPTABLETYPE: (err:FOER0000) No acceptable content type: None of the requested types text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 can be provided
</message>
</error-response>
我可以在Modules
db中看到该模块。当我尝试使用转换插入文档时,这工作正常。
为什么我无法在浏览器中查看转换?
答案 0 :(得分:4)
不幸的是,该休息端点对浏览器不友好。所需/可接受的接受标头值与通常发送的浏览器不匹配。
当您通过浏览器发出GET请求时,它发送了以下Accept标头:
text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
此字段包含以分号分隔的表示方案列表(Content-Type元信息值),将在此请求的响应中接受。
不幸的是,v1/config/transform/{name} (GET) REST端点对于接受标头接受的内容是严格的,并且需要特定的值:
响应中预期的数据的MIME类型
application/xslt+xml
或 { {1}}。
如果您使用文档中的示例CURL命令,并为您的转换URI进行自定义,它将返回预期的响应。
application/xquery