如何使用angularjs将新网址重定向到webview中的上一个网址?
我的代码
window.open("https://stage2.pledgster.net/fbapp/", "_blank", "location=no");
我正在使用此代码在Webview中使用Angularjs打开此URL。 任何解决方案。?
答案 0 :(得分:0)
您可以使用Vector<string> v = new Vector<string>();
v[0] = "item0";
v[10] = "item10";
string s = v[10]; //s will be "item10"
来刷新页面。
您可以“留在”单页应用中并使用$ 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);