클라이언트 소스(브라우저)

 $.ajax({
    url : "192.168.48.123/api/client",
    type : "POST",
    cache : false,
    dataType:"json",
    success: function(data) {
        console.log(data);
    },
 });

오류메세지
XMLHttpRequest cannot load http://192.168.48.123/api/client. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin '192.168.48.456' is therefore not allowed access.

해결방법(서버 Node.js 소스 수정)

response.type('application/json');
response.header("Access-Control-Allow-Origin" , "*")
response.json(200, {
    code : code,
    result : result
});

참고사이트

2013/12/20 21:48 2013/12/20 21:48
태그 : , , ,
글 걸기 주소 : 이 글에는 트랙백을 보낼 수 없습니다