vote up 11 vote down star
4

I'm writing an AJAX app, but as the user moves through the app, I'd like the URL in the address bar to update despite the lack of page reloads. Basically, I'd like for them to be able to bookmark at any point and thereby return to the current state.

How are people handling maintaining RESTfulness in AJAX apps? Thanks in advance.

flag

7 Answers

vote up 10 vote down check

The way to do this is to manipulate location.hash when AJAX updates result in a state change that you'd like to have a discreet URL. For example, this page's URL is:

http://beta.stackoverflow.com/questions/1457/modify-address-bar-url-in-ajax-app-to-match-current-state

If a client side function executed this code:

// AJAX code to display the "foo" state goes here.

location.hash = 'foo';

Then, the URL displayed in the browser would be updated to:

http://beta.stackoverflow.com/questions/1457/modify-address-bar-url-in-ajax-app-to-match-current-state#foo

This allows users to bookmark the "foo" state of the page, and use the browser history to navigate between states.

With this mechanism in place, you'll then just need to parse out the hash portion of the URL on the server side and display the appropriate initial state.

link|flag
vote up 2 vote down

Basically your links contain anchors:

  1. page.html#Tab1
  2. page.html#Tab2
  3. page.html#Tab3

And when the page loads you check document.location.href and substr the ID off the end to get the state. At least that's how I've been doing it. :(

Hopefully there's a better way.

link|flag
vote up 4 vote down

This is similar to what Kevin said. You can have your client state as some javascript object, and when you want to save the state, you serialize the object (using JSON and base64 encoding). You can then set the fragment of the href to this string.

var encodedState = base64(json(state));
var newLocation = oldLocationWithoutFragment + "#" + encodedState;

document.location = newLocation; // adds new entry in browser history
document.location.replace(newLocation); // replaces current entry in browser history

The first way will treat the new state as a new location (so the back button will take them to the previous location). The latter does not.

link|flag
vote up 3 vote down

Looks like you're right. That's the only approach.

This seems like a good detailed explanation of your advice: http://ajaxpatterns.org/Unique_URLs

Thank you for your help.

link|flag
vote up 0 vote down

Thank you. I have been looking for the answer to this.

link|flag
vote up 0 vote down

SWFAddress works in Flash & Javascript projects and lets you create bookmarkable URLs (using the hash method mentioned above) as well as giving you back-button support.

http://www.asual.com/swfaddress/

link|flag
vote up 0 vote down

The window.location.hash method is the preferred way of doing things. For an explanation of how to do it, Ajax Patterns - Unique URLs
YUI has an implementation of this pattern as a module, which includes IE specific work arounds for getting the back button working along with re-writing the address using the hash. YUI Browser History Manager
Other frameworks have similar implementations as well. The important point is if you want the history to work along with the re-writing the address, the different browsers need different ways of handling it. (This is detailed in the first link article.)

IE needs an i-frame based hack, where FF will produce double history using the same method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.