ASP.NET MVC에서 jQuery를 사용하여 부분 뷰 렌더링


223

jquery를 사용하여 부분보기를 어떻게 렌더링합니까?

부분 뷰를 다음과 같이 렌더링 할 수 있습니다.

<% Html.RenderPartial("UserDetails"); %>

jquery를 사용하여 어떻게 똑같이 할 수 있습니까?


아래 기사도 볼 수 있습니다. tugberkugurlu.com/archive/… 그것은 다른 접근법을 따르고 길을 향상시킵니다.
tugberk

바보 같은 질문. UserDetails는 cshtml 페이지 (UserDetails.cshtml)로 부분보기입니까? 부분보기를로드하려고합니다. 그리고 일반적으로 다음을 사용합니다 : @ Html.Partial ( "~ / Views / PartialViews / FirstPartialViewTwo.cshtml")
George Geschwend

1
@GeorgeGeschwend, 누군가가 그것에 응답 할 때까지 여기에 바보가 없습니다. UserDetails (UserDetails.cshtml)는 사용자 컨트롤러 내부의 부분보기입니다. 표시된 답변의 의견에서와 같이 뷰의 전체 경로를 하드 코딩하는 대신 Url.Action을 사용하는 것이 좋습니다.
Prasad

답변:


286

jQuery 만 사용하여 부분보기를 렌더링 할 수 없습니다. 그러나 부분 뷰를 렌더링하고 jQuery / AJAX를 사용하여 페이지에 추가하는 메소드 (액션)를 호출 할 수 있습니다. 아래에는 버튼의 데이터 속성에서 작업에 대한 URL을로드하고 부분보기에 포함 된 DIV를 업데이트 된 내용으로 바꾸는 GET 요청을 발생시키는 버튼 클릭 핸들러가 있습니다.

$('.js-reload-details').on('click', function(evt) {
    evt.preventDefault();
    evt.stopPropagation();

    var $detailDiv = $('#detailsDiv'),
        url = $(this).data('url');

    $.get(url, function(data) {
        $detailDiv.replaceWith(data);         
    });
});

여기서 사용자 컨트롤러에는 다음과 같은 작업을 수행하는 details라는 작업이 있습니다.

public ActionResult Details( int id )
{
    var model = ...get user from db using id...

    return PartialView( "UserDetails", model );
}

이것은 부분보기가 ID가있는 컨테이너라고 가정 detailsDiv하여 전체 결과를 호출 결과의 내용으로 바꿉니다.

부모보기 버튼

 <button data-url='@Url.Action("details","user", new { id = Model.ID } )'
         class="js-reload-details">Reload</button>

User제어기 이름이며의 details조치 이름입니다 @Url.Action(). UserDetails 부분보기

<div id="detailsDiv">
    <!-- ...content... -->
</div>

귀하가 제공 한이 예제 코드로 계속 나쁜 요청을 받고 있습니다. 나는 그대로 복사하고 컨트롤러 동작을 변경했습니다. "사용자"가 무엇인지 잘 모르겠습니다.
chobo2

1
우리가 갈 수있는 코드를 포함하지 않았기 때문에 방금 "가능한"컨트롤러와 액션 이름을 사용했습니다. "세부 사항"을 조치로 바꾸고 "사용자"를 컨트롤러 이름으로 바꾸십시오.
tvanfosson

1
큰 답변 tvanfosson에 다시 한 번 감사드립니다.

이것이 Razor와 어떻게 작동하는지 알 수 있습니까? $ .get ( "@ Url.Action (\"Manifest \ ", \"업로드 \ ", 새 {id ="+ 키 + "})", 함수 (data) {$ ( "<div />") 시도) .replaceWith (data);});
Patrick Lee Scott

1
@Zapnologica-전체 테이블을 다시로드하는 경우 원래 연결된 DOM 요소가 교체되었으므로 플러그인을 다시 적용해야 할 수도 있습니다. 데이터를 JSON, datatables.net/examples/data_sources/server_side.html
tvanfosson

152

나는 이것을하기 위해 ajax load를 사용했다.

$('#user_content').load('@Url.Action("UserDetails","User")');

46
일반적으로 경로를 하드 코딩하는 대신 Url.Action 도우미를 사용하는 것이 좋습니다. 웹 사이트가 루트가 아닌 서브 디렉토리에있는 경우 중단됩니다. 도우미를 사용하면 문제가 해결되고 동적으로 설정된 값으로 매개 변수를 추가 할 수 있습니다.
tvanfosson

18
당신은 $ ( '# user_content'). load ( '@ Url.Content ( "~ / User / UserDetails")') 할 수 있습니다-쿼리 문자열 매개 변수를 때리는 자바 스크립트가 필요한 경우이 방법을 자주 사용합니다. URL의 끝에
Shawson

이 답변에서 UserDetails부분적인 견해가 아니라 행동의 이름입니까?
Maxim V. Pavlov

4
@Prasad : URL은 항상 사용하여 평가되어야 @Url.Action("ActionName","ControllerName", new { area = "AreaName" } )하고 대신 Handcoding을 .
Imad Alazani 2016 년

3
@PKKG. @ Url.Action ()은 Razor에서만 평가됩니다. OP가 코드를 별도의 js 파일에 넣고 참조하려는 경우 작동하지 않습니다.
Michael

60

@ tvanfosson은 그의 대답으로 흔들립니다.

그러나 js 내에서 개선하고 작은 컨트롤러 검사를 제안합니다.

@Url헬퍼를 사용 하여 액션을 호출하면 형식화 된 html을 받게됩니다. .html실제 요소 ( .replaceWith)가 아닌 컨텐츠 ( ) 를 업데이트하는 것이 좋습니다 .

에 대한 추가 정보 : jQuery의 replaceWith ()와 html ()의 차이점은 무엇입니까?

$.get( '@Url.Action("details","user", new { id = Model.ID } )', function(data) {
    $('#detailsDiv').html(data);
}); 

이것은 내용이 여러 번 변경 될 수있는 트리에서 특히 유용합니다.

컨트롤러에서 요청자에 따라 조치를 재사용 할 수 있습니다.

public ActionResult Details( int id )
{
    var model = GetFooModel();
    if (Request.IsAjaxRequest())
    {
        return PartialView( "UserDetails", model );
    }
    return View(model);
}

11

시도 할 수있는 또 다른 것은 (tvanfosson의 답변을 기반으로) 다음과 같습니다.

<div class="renderaction fade-in" 
    data-actionurl="@Url.Action("details","user", new { id = Model.ID } )"></div>

그런 다음 페이지의 스크립트 섹션에서

<script type="text/javascript">
    $(function () {
        $(".renderaction").each(function (i, n) {
            var $n = $(n),
                url = $n.attr('data-actionurl'),
                $this = $(this);

            $.get(url, function (data) {
                $this.html(data);
            });
        });
    });

</script>

이것은 ajax를 사용하여 @ Html.RenderAction을 렌더링합니다.

그리고 모든 fany sjmansy를 만들기 위해이 CSS를 사용하여 페이드 인 효과를 추가 할 수 있습니다.

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
    opacity: 0; /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    -o-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

내가 사랑하는 사람 mvc :-)


왜 각 기능을 했습니까? 어떻게 작동합니까? data-actionurl = "@ Url.Action ("details ","user ", new {id = Model.ID} data-actionurl =" 다른 작업 "?
user3818229

아니요, 각 함수는 data-actionurl 속성이있는 모든 html 요소를 반복하고 action 메소드에 대한 ajax 요청을 호출하여 채 웁니다. 여러 <div class="renderaction fade-in" ...></div>요소가 있습니다.
피터

9

컨트롤러에서 "UserDetails"부분보기 또는 컨트롤의 렌더링 결과를 반환하는 액션을 만들어야합니다. 그런 다음 jQuery에서 Http Get 또는 Post를 사용하여 Action을 호출하여 렌더링 된 HTML을 표시하십시오.


이 jQuery를 기능에 업데이트 된 데이터를 갱신하는 방법 설정된 시간 간격
니라 즈 메타

5

동일한 결과를 얻기 위해 표준 Ajax 호출 사용

        $.ajax({
            url: '@Url.Action("_SearchStudents")?NationalId=' + $('#NationalId').val(),
            type: 'GET',
            error: function (xhr) {
                alert('Error: ' + xhr.statusText);

            },
            success: function (result) {

                $('#divSearchResult').html(result);
            }
        });




public ActionResult _SearchStudents(string NationalId)
        {

           //.......

            return PartialView("_SearchStudents", model);
        }

0

나는 이렇게했다.

$(document).ready(function(){
    $("#yourid").click(function(){
        $(this).load('@Url.Action("Details")');
    });
});

세부 사항 방법 :

public IActionResult Details()
        {

            return PartialView("Your Partial View");
        }

0

동적으로 생성 된 값을 참조해야하는 경우 @ URL.Action 뒤에 쿼리 문자열 매개 변수를 추가 할 수도 있습니다.

    var id = $(this).attr('id');
    var value = $(this).attr('value');
    $('#user_content').load('@Url.Action("UserDetails","User")?Param1=' + id + "&Param2=" + value);


    public ActionResult Details( int id, string value )
    {
        var model = GetFooModel();
        if (Request.IsAjaxRequest())
        {
            return PartialView( "UserDetails", model );
        }
        return View(model);
    }
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.