if (NavigationContext.QueryString["id"] != null)
类型
的例外System.Collections.Generic.KeyNotFoundException
发生在mscorlib.ni.dll
但未在用户代码中处理
请帮帮我:(
答案 0 :(得分:0)
试试这个 -
if(NavigationContext.QueryString.ContainsKey("id")) //this checks if "QueryString" has the key "id"
{
if (NavigationContext.QueryString["id"] != null) //this checks if the key "id" in "QueryString" is null or not
{
//Do stuff here
}
}
另外,如果要检查字符串,请更好地使用
string id = NavigationContext.QueryString["id"];
if(string.IsNullOrWhiteSpace(id))
{
//Do Stuff here
}