Imagine you have a REST server with a query that limits the number of items retrieved from a resource by using a query string like /items?startswith=Foo
. How can I connect this to Backbone so that the Items
collection is updated when a different query is entered in the browser? Should I modify the url
parameter of the collection based on an input
change and then call fetch
? I'm not asking for code handouts, just seeking guidance as a newcomer to Backbone.