How can use AJAX to load a complete partial view rendered in html (so I just set the div.html)
I need the ajax call to call controller action that will render a complete partial view (red) and append it at the end of the currently loaded one?
[I know how to append to DOM and how to make AJAX calls]
I need to know what is the best plumbing approach for this, what type of ActionResult should the action return and if there is an already built-in mechanism for this so to avoid reinventing the wheel?
When making AJAX requests, it is very simple to return HTML content as the result. Simply return an ActionResult using the PartialView method that will return rendered HTML to the calling JavaScript. Now define an action method in the book controller that returns an ActionResult using the PartialView.
How to return a partial view from controller action method? To return a Partial view from the controller action method, we can write return type as PartialViewResult and return using PartialView method.
Partial() The @Html. Partial() method renders the specified partial view. It accepts partial view name as a string parameter and returns MvcHtmlString .
It does not require to have a controller action method to call it. Partial view data is dependent of parent model. Caching is not possible as it is tightly bound with parent view (controller action method) and parent's model.
There is built-in ajax helpers in ASP.NET MVC which can cover the basic scenarios.
You need to install and refer jquery.unobtrusive-ajax
JavaScript library ( + jQuery dependency). Then in your main view (let's say index.cshtml) put following code:
Index.cshtml
@Ajax.ActionLink("Load More Posts", "MorePosts", new AjaxOptions()
{
HttpMethod = "GET",
AllowCache = false,
InsertionMode = InsertionMode.InsertAfter,
UpdateTargetId = "posts-wrapper"
})
<div id="posts-wrapper"></div>
Note: @Ajax.ActionLink
helper accepts AjaxOptions
parameter for more customizations.
In the controller (let's say HomeController.cs) you should return PartialViewResult
:
public ActionResult MorePosts(int? offset, int? count)
{
IEnumerable<Post> posts = myService.GetNextPosts(offset, count);
return PartialView(posts);
}
Finally you define the MorePosts.cshtml partial view:
@model IEnumerable<Post>
@{
Layout = null;
}
@foreach (var post in Model)
{
<div class="post">
<div>>@post.Prop1</div>
<div>@post.Prop2</div>
</div>
<hr />
}
And that's it. When some user clicks on Load More
button, more posts will be loaded.
Note 1: you can implement OnBegin
function to implement the actual logic for deciding which are the next posts to load (ex. get the id of the last loaded post and send it to the server).
Note 2: the same result can be achieved with custom jQuery.ajax
calls (without jquery.unobtrusive). The only differences will be the manual ajax calls and click events.
Hope this helps. I can write a more complete example if needed.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With