0

ajax (json) からのデータは問題なく最新ですが、モーダルに表示されるデータは最初のページ読み込みからのものです。「console.log」のデータは正しいです。キャッシュの問題のようですか?

$('.showCallhistory').click(function(e) {
        var callsId = $(this).data("id");
        $.ajax({
            cache: false,
            url : '?eID=ajaxDispatcher&callId='+callsId,
            dataType : 'json',
            success : function(data) {
                var callhistoryhtml = '';
                callhistoryhtml +='<div class="well"><dl class="dl-horizontal">';
                $.each(data, function(i, val) {
                    callhistoryhtml += '<dt>'+val.chCrdate+'</dt><dd>'+val.chEntry+' | durch: '+val.feUsername+'</dd>';
                    console.log(val.chEntry + ' : ' + val.chCrdate+ ' : ' + val.feUsername);
                });
                callhistoryhtml += '</dl></div>';
                $('.replaceMe').replaceWith(callhistoryhtml);
                $('#myModal').modal('toggle');
            },
            error : function(result) {
                alert('error ' + result.myResult);
            },
        });
    });

コンテンツが適切に置き換えられていない私のモーダル:

    <div class="modal fade" id="myModal" tabindex="-1" role="dialog"
    aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal"
                    aria-hidden="true">&times;</button>
                <h4 class="modal-title" id="myModalLabel">Call-Historie</h4>
            </div>
            <div class="modal-body replaceMe">...</div>
            <div class="modal-footer">
                <button type="button" class="btn btn-primary" data-dismiss="modal">schliessen</button>
            </div>
        </div>
    </div>
</div>
4

1 に答える 1