支持的
//test = type=http-request,pattern=http://httpbin.org/post,requires-body=1,max-size=0,script-path=test 4.js
$done({response:{body:$request.body}})
import requests
response = requests.post('http://httpbin.org/post', data='hello')
response
<Response [200]>
response.text
'hello'