Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8992237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:54:27+00:00 2026-06-15T22:54:27+00:00

When a model is changed, I update the route (it has a url that

  • 0

When a model is changed, I update the route (it has a url that contains the application’s current state).

When a url is visited (or back is pressed) I update the model from the route.

This creates circular logic problems for me that I can’t get my head around. Things are being changed twice for no reason.

Is it normal to base everything on the route, and use that to update the model?
Is it normal to have two models?
What is normal?

Any help or advice would be appreciated. Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T22:54:28+00:00Added an answer on June 15, 2026 at 10:54 pm

    I wouldn’t advise using Router the way you do. In general, the route action should not change model state. In general, HTTP GET operations should not have side-effects.

    Routers should be used for navigation between different pages of a single-page application. Model changes should be triggered directly from the view code that handles user input. Let’s say you have a model User, and view UserView, the view could work something like this:

    var UserView = Backbone.View.extend({
        events: {
            "click #save", "save"
        },
    
        initialize: function(options) {
            this.model = options.model;
        },
    
        render: function() {
            //your render code here
        },
    
        save: function() {
            var fields = {
                name: this.$("#name").val();
                email: this.$("#email").val();
            };
    
            this.model.save(fields , {
                //after save go back to users page, or whatever
                success: function() { window.location.hash = "/users"; },
                error: this.displayError
            });
        }
    });
    

    Backbone isn’t really an MVC framework, so the Router shouldn’t be treated as a pure controller. And even if you did, changing state in a route action would be equivalent to changing state in a MVC controller GET endpoint – bad, bad idea.

    If you want to adhere to a pure MVC pattern, you should implement your own controller layer, or look at another layer besides Backbone.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is a correct way to update model when view changed. Is it need
I have an entity model that has audit information on every table (50+ tables)
I know it should persist if my Core Data Model has not changed, but
I changed my db model, now I need to update my linq setup. How
I have project model that has many tasks. Both project and tasks can have
I've got a backbone model with contains a collection. The output from the console
I'm trying to find a way to change/update a model inside a collection without
In the pluralsight video of http://www.asp.net/mvc . The model object member were changed to
If a model changes an attribute locally, then changes it back, ActiveRecord doesn't send
I have a user model that requires the user to change their password every

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.