|
|
|
|
|
by Arnor
4547 days ago
|
|
In my current project I have 20 listeners in the ready function. I can see how it would get pretty nasty if I got up to the 100+ range. I think that would be settled by tacking on a listeners method to each of the models: ...
$(document).ready(function () {
n.Product.listeners();
n.Cart.listeners();
});
...
Ooo... I like that, maybe I'll implement that...Regarding the fetching/posting data, I have an ajax method on the applicable model. Fortunately, I'm writing the server app as well so I got to make some decisions on that end that simplify the approach (e.g. everything goes through POST, all data comes back as JSON.) I suppose that makes the AJAX acronym imprecise... AJAJ? |
|