英文:
How can I back to last url before close app ionic?
问题
我想要获取用户在关闭应用程序之前访问的最后一个页面的网址。当他们再次打开应用程序时,他们将被重定向到该最后一个网址。
我不知道如何获取最后一个网址。我尝试使用路由事件、IonAppBrowser。
英文:
I want to get the last page Url that user come before they close app. And when they open again, they will redirect to that last Url
I dont know how to get the last url. I try use router event, Ionappbrowser
答案1
得分: 1
你必须将路由网址保存在存储中,然后当应用程序再次加载时,将获取该网址的方法放置在ngOninit生命周期方法中。
你可以使用路由器获取网址。https://ionicframework.com/docs/api/router
英文:
You have to save the route url in storage and then when app is loaded again, place the method to get that url from storage in the ngOninit lifecycle method.
You use the router to get the url. https://ionicframework.com/docs/api/router
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论