Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have inherited a half-finished mobile app built using Backbone.js (which I have never used).

I need, quite simply, to send the user back when they click a back button.

Some brief research leads me to believe it has something to do with Backbone.history but I can't figure out what.

Any ideas?

question from:https://stackoverflow.com/questions/7732223/using-backbone-history-to-go-back

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
344 views
Welcome To Ask or Share your Answers For Others

1 Answer

Unless the app uses the fancy-schmancy HTML5 pushState events, I don't see a need for Backbone.History here. Just use window.history.back().


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...