2013-06-01 3 views
0

HTTP 오류 405 동사가 허용되지 않습니다. 때로는 코드가 작동하고 때로는 HTTP 405 오류가 발생하므로 프로그래밍 문제인지 서버 구성 문제인지 이해해야합니다. jquery 함께 아약스 사용하고 있습니다. 관련 게시물을 모두 살펴본 후 코드와 관련된 모든 권장 옵션을 시도했습니다. 도와주세요. datastring : 문제는 매개 변수를 전달하는 방식이 잘못 i.e.data했다 를 해결ajax 요청을 사용하는 동안 임의의 HTTP 오류 405

$(function() { 
$('.error').hide(); 
$(".button").click(function() { 
     // validate and process form 
     // first hide any error messages 
      $('.error').hide(); 
      var name = $("input#name").val(); 
    if (name == "") { 
    $("label#name_error").show(); 
    $("input#name").focus(); 
    return false; 
          } 
    var email = $("input#email").val(); 
    if (email == "") { 
    $("label#name_error").show(); 
    $("input#email").focus(); 
    return false; 
          } 

    var textquery = $("textarea#textquery").val(); 
    if (textquery == "") { 
    $("label#name_error").show(); 
    $("textarea#textquery").focus(); 
    return false; 
           } 

    var dataString = name + email + textquery; 
// alert (dataString);return false; 

    $.ajax({ 
    type: "POST", 
    url: "samplemail.aspx", 
    data: dataString, 
    success: function() { 
    $('#contact_form').html("<div id='message'></div>"); 
    $('#message').html("<h2>Contact Form <br> Submitted!</h2>") 
    .append("<p>We will be in touch soon.</p>") 
    .hide() 
    .fadeIn(1500, function() { 
     $('#message').append("<img id='checkmark' src='images/check.png' />"); 
          }); 
         } 
     }); 
return false; 
}); 
}); 
runOnLoad(function(){ 
    $("input#name").select().focus(); 
        }); 

답변

0

다음과 같이

내 자바 스크립트 코드입니다. 올바른 방법은 {name : name, email : email, textquery : textquery}

데이터입니다.