jQuery Mobile/MVC: Getting the browser URL to change with RedirectToAction

后端 未结 4 479
迷失自我
迷失自我 2020-12-01 03:29

My first post...

When I use RedirectToAction the url in the browser doesn\'t change. How can I achieve this?

I\'m switching over to ASP.NET

相关标签:
4条回答
  • 2020-12-01 04:09

    Not sure if it is still actual, but in my case I wrote following helper method

    public static IHtmlString GetPageUrl<TModel>(this HtmlHelper<TModel> htmlHelper, ViewContext viewContext)
        {
            StringBuilder urlBuilder = new StringBuilder();
            urlBuilder.Append("data-url='");
            urlBuilder.Append(viewContext.HttpContext.Request.Url.GetComponents(UriComponents.PathAndQuery, UriFormat.UriEscaped));
            urlBuilder.Append("'");
            return htmlHelper.Raw(urlBuilder.ToString());
        }
    

    And then use it as follows:

    <div data-role="page" data-theme="d" @Html.GetPageUrl(ViewContext) >
    

    This way I don't need for every redirect action store a TempData. Worked for me fine both for Redirect and RedirectToAction. This would not work properly in case if you use method "View()" inside controller and return different view name, which will change UI, but will retain url.

    Hope it helps Artem

    0 讨论(0)
  • 2020-12-01 04:14

    David, this was a big help to me. I just wanted to add that in my case I had to use the following format to get the Url to display in the correct form as my other url's:

    TempData["DataUrl"] = "data-url=/appName/controller/action";      
    return RedirectToAction("action", "controller");
    

    As a side note, I also found that when assigning the value to TempData["DataUrl"] I was able to leave out the escaped quotes and enter it exactly as above and it seems to be working fine for me. Thanks again for your help.

    0 讨论(0)
  • 2020-12-01 04:14

    There is an issue on github https://github.com/jquery/jquery-mobile/issues/1571

    It has a nice solution without the need of TempData

    0 讨论(0)
  • 2020-12-01 04:26

    I think I've found an answer. Buried deep in the jQuery Mobile documentation, there is information about setting the data-url on the div with data-role="page". When I do this, I get the nice jQuery Mobile AJAX stuff (page loading message, page transitions) AND I get the url in the browser updated correctly.

    Essentially, this is how I'm doing it...

    [HttpPost]
    public ActionResult Products(...)
    {
        // ... add products to cart
        TempData["DataUrl"] = "data-url=\"/Cart\"";
        return RedirectToAction("Index", "Cart");
    }
    

    Then on my layout page I have this....

    <div data-role="page" data-theme="c" @TempData["DataUrl"]>
    

    On my HttpPost actions I now set the TempData["DataUrl"] so for those pages it gets set and is populated on the layout page. "Get" actions don't set the TempData["DataUrl"] so it doesn't get populated on the layout page in those situtations.

    The only thing that doesn't quite work with this, is when you right-click... view source... in the browser, the html isn't always for the page you are on, which isn't unusual for AJAX.

    0 讨论(0)
提交回复
热议问题