如何使用angularjs从webl重定向到webview中的上一个url?

时间:2015-07-06 07:05:18

标签: android angularjs ionic

如何使用angularjs将新网址重定向到webview中的上一个网址?

我的代码

 window.open("https://stage2.pledgster.net/fbapp/", "_blank", "location=no");

我正在使用此代码在Webview中使用Angularjs打开此URL。  任何解决方案。?

1 个答案:

答案 0 :(得分:0)

  1. 您可以使用Vector<string> v = new Vector<string>(); v[0] = "item0"; v[10] = "item10"; string s = v[10]; //s will be "item10" 来刷新页面。

  2. 您可以“留在”单页应用中并使用$ location,在这种情况下,您可以选择class Vector<T> { Dictionary<int,T> list; public Vector () { this.list = new Dictionary<int,T>(); } public T this [int index]{ get { if (list.ContainsKey(index)) return list[index]; else return default(T); } set { if (list.ContainsKey(index)) list[index] = value; else list.Add(index,value); } } } $window

    使用以下代码重定向到新页面$location.path(YOUR_URL);