我的问题有点抽象,但目标是在我的网络应用中构建一个特定的功能。
我需要我的应用程序在其域下接收URL并将其中的一部分作为参数用于其他目的。
每个例子(用户体验流程的种类):
我们有这个应用程序显然没有做任何离谱--app.com
我们将ionic-app-com / q932n9324n8324n932放在互联网导航器上
显示页面ionic-app.com/welcome,字符串q932n9324n8324n932显示为html内容
任何直接的帮助表示赞赏,但也欢迎任何关于我在哪里寻找有关此信息的建议。
答案 0 :(得分:1)
您可以使用window.location
访问应用中的网址(在Chrome控制台中自行试用)。当使用" ionic-app-com / q932n9324n8324n932"你可以使用类似的东西:
var foo = window.location.href.split("/"); // Split the URL at every slash
var param = foo[foo.length-1]; // Get the last element of the URL, this should be q932n9324n8324n932
希望这有帮助!