我愿创建一部精彩的手工艺器,大体添加如下内容:
"from": "/createSomeStuff",
"to": "../../_bulk_docs",
"method": "POST"
this works fine ... but id also like the build the request body in the rewrite rules. Much akin to the way the query is built in this example I found on URL rewriting:
"rewrites": [
{
"from": "/blog",
"to": "_list/posts/all",
"query": {
"descending":true,
"limit": 5
}
}
],
这样做有办法:
"from": "/createSomeStuff",
"to": "../../_bulk_docs",
"method": "POST",
"request" : {
"body":{{"foo": true},{"bar" : false}}
}