0
Виконано

How do I set the post request body of a web service on the design surface

anonymous 10 років тому оновлено Gandalf 8 років тому 5
I created a source against my local couchdb install (http://localhost:5984)
I then created a web service as seen in the image below
Image 28

I then saved it and placed it on the design surface passing :

{"docs": [ {"_id": "my_doc", "number": 23}, {"_id": "_design/app", "updates": { "accumulate": "function (doc, req) { var inc_amount = parseInt(req.query.amount); doc.number = doc.number + inc_amount; return [doc, \"I incremented \" + doc._id + \" by \" + inc_amount]; }" } } ]}

into the postBody variable and executed it. I got an error message as seen in the image below.
Image 29

How can I pass JSON data into the request and have it execute?

Відповідь

Відповідь
Under review
We are looking into it