No PATCH and DELETE request method support?
-
Many testing frameworks are using Qt WebKit. In Ruby on Rails (and others), there is already support for PATCH and DELETE request methods. But we can't test it. Is there a way to get it working?
More information can be found at these links:
https://github.com/thoughtbot/capybara-webkit/issues/553
https://github.com/thoughtbot/capybara-webkit/issues/427
https://github.com/ariya/phantomjs/issues/11384
https://github.com/ariya/phantomjs/issues/10873RFC2068 for PATCH request method:
http://tools.ietf.org/html/rfc2068#section-19.6.1.1
RFC2068 for DELETE request method:
http://tools.ietf.org/html/rfc2068#page-53 -
"QtWebkit" uses "QNetWorkAccessManager", it support:
@
enum Operation {
HeadOperation = 1,
GetOperation,
PutOperation,
PostOperation,
DeleteOperation,
CustomOperation,UnknownOperation = 0 };
@
Maybe something in your front-end request (maybe you use ajax).
For DELETE, QNetWorkAccessManager work with this method:@QNetworkAccessManager::deleteResource@