in Backbone?
I'm using POST to handle all CRUD operations and I need to know the proper place to set POST key/value pairs.
As an example how would you do this for a Collection fetch() request.
Please take note that I have over-ridden Backbone.Sync to always use POST.
Please understand I've done this for a reason and it will work fine as my server is setup this way for testing purposes.
Thanks.
Here is the over-ridden Sync FYI in Q/A format.
Is it O.K. to re-write Backbone.sync by hard coding in values?
Update
It looks like it just needs to be set to the data property as an obeject literal or query string according to:
http://hayageek.com/jquery-ajax-post/
Strange this info. was not in the jQuery ajax API.