0
Fertiggestellt

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

anonymous vor 10 Jahren aktualisiert von Gandalf vor 8 Jahren 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?

Antwort

Antwort
Wird überprüft
We are looking into it
Antwort
Wird überprüft
We are looking into it
Hey Travis

How would a JSON tool that allowed mapping of variables into JSON format and outputting to a new variable work for you.
That would be super. Thanks.