programing

정의되지 않은 '모드' 속성을 읽을 수 없습니다.

telecom 2023. 8. 18. 20:53
반응형

정의되지 않은 '모드' 속성을 읽을 수 없습니다.

매우 간단한 AJAX 요청이지만 전혀 작동하지 않습니다.이전에 본 적 없는 오류가 발생:

정의되지 않은 '모드' 속성을 읽을 수 없습니다.

$.ajax({
    url: '/Contractor/api/plot/LinkBuyer',
    method: 'POST',
    data: {
        'buyerId': 1,
        'plotId' : parseInt(sPlotId, 10),
        'activateDirectly': true
    },
    success: function (data) {
        console.log('success');
    },
    error: function(jqXHR, textStatus, errorThrown) {
        console.log(JSON.stringify(jqXHR));
        console.log("AJAX error: " + textStatus + ' : ' + errorThrown);
    }
});

정답!저는 슬림 버전의 jquery를 사용하고 있었습니다.

저는 숨겨진 요소를 보여주기 위해 jqueryui를 사용하는 것과 매우 유사한 문제를 겪었습니다.

jQuery('#myId').show({effect: 'Blind', duration: 800});

문제는 효과 이름이 소문자로 되어 있어서 자바스크립트의 오른쪽 줄은

jQuery('#myId').show({effect: 'blind', duration: 800});

언급URL : https://stackoverflow.com/questions/46000763/cannot-read-property-mode-of-undefined

반응형