I have a collection which holds some of the users. Some information that is needed is how many total there are, how many pages, etc. How do I pass these back to the client? Or do they have to come from a separate view in which case I will need more than one ajax call? I'd like to have the collection fetch() and also receive some of this "meta data". What's a good way for handling this?
| |||||||
feedback
|
|
Generally, you need to handle this in the collection class' parse method. Its responsibility is to take the response and return back an array of model attributes. However, you could do more than that if you wished if you didn't mind the parse method having this additional responsibility.
}); So in the trivial example above, presume the server returns a response which contains a count of registered users and and an array of user attributes. You would both parse through and return the user attributes and you would pick off the registered user count and just set it as a variable on the model. The parse method would get called as part of a fetch. So no need to modify the fetch, just use the built-in hook method that you have. Purists would say that you are giving the parse method a secondary responsibility which might surprise some people (e.g. returning something and modifying model state). However, I think this is okay. | |||
|
feedback
|
|
I would bootstrap the information at pagecreation. Write the information into the html document when the server creates the site. Like that you don't have to have an ajax call at all. I do that with the whole collection in ordner not to first load the page and then wait for the ajax call to return the information needed. Code example with Python: Line 64: https://github.com/ichbinadrian/maps/blob/master/python/main.py <- from here Line 43: https://github.com/ichbinadrian/maps/blob/master/templates/index.html <- into here | |||
|
feedback
|
|
One way to do this is to override the
In your
Note that this approach using This way, you don't have to make 2 separate calls to the backend. | |||||
feedback
|