I notice that there is a 'DELETE' method in RequestHandler, but wonder how you can pass parameters to it from the front-end.It seems that JQuery ajax function does not support 'data' option with 'DELETE' or 'POST' requests, thus a feasible way is to append to a URL string: e.g. /stuff/delete/12345?para=blah. However, that is probably not RESTful.So I wonder if there is a workaround for doing RESTful 'DELETE' request with parameters in Tornado. Thanks!
is the term 'argument' the same as 'parameter' in Tornado?