1

我从事一个基于 Windows Phone 7.5 的项目。

我有第 1 页将 URL 作为 QueryString 传递。e.Value.ToString() 是http://xiciimgs.xici.net/d189532038.0/001_7384_%B8%B1%B1%BE_%B8%B1%B1%BE_s.jpg,这是正确的字符串。

    private void myWB1_ScriptNotify(object sender, NotifyEventArgs e)
    {
        string passingURL = e.Value.ToString();
        if (!String.IsNullOrEmpty(passingURL)) 
        {
           App.goToPage("/PictureViewPage.xaml?pictureurl=" + passingURL);
        }
    }

在第 2 页,我尝试通过以下代码获取 URL,

    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        string strUrl = "";
        base.OnNavigatedTo(e);
        NavigationContext.QueryString.TryGetValue("pictureurl", out strUrl);
        strUrl = Uri.EscapeUriString(strUrl);
    }

在 TryGetValue 之后,strUrl 是“ http://xiciimgs.xici.net/d189532038.0/001_7384_¸±±¾_¸±±¾_s.jpg ”,在Uri.EscapeUriString

之后,strUrl 原来是“ http:// /xiciimgs.xici.net/d189532038.0/001_7384_%C2%B8%C2%B1%C2%B1%C2%BE_%C2%B8%C2%B1%C2%B1%C2%BE_s.jpg "

有点意外,App.gotoPage 除了导航什么也没做:

    public static void goToPage(string targetUri)
    {
        var rootFrame = (App.Current as App).RootFrame;
        rootFrame.Navigate(new System.Uri(targetUri, System.UriKind.Relative));
    }

我的问题是为什么会发生这种情况以及如何获得正确的网址?

4

1 回答 1

2

终于找到问题了,
Uri.EscapeUriString中先传值,避免导航时出现格式异常。

private void myWB1_ScriptNotify(object sender, NotifyEventArgs e)
{
    string passingURL = e.Value.ToString();
    passingURL = Uri.EscapeUriString(passingURL);
    if (!String.IsNullOrEmpty(passingURL)) 
    {
       App.goToPage("/PictureViewPage.xaml?pictureurl=" + passingURL);
    }
}
于 2013-06-08T15:15:13.587 回答