해결방법좀 알려주세요.

Failed to load http://localhost:703/NanumTipService.svc/UpdatePath: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://www.domain.com/' is therefore not allowed access. The response had HTTP status code 400.

1 답변

0 투표
<system.webServer>
    <httpProtocol>
      <customHeaders>
        <add name="Access-Control-Allow-Origin" value="*" />
      </customHeaders>
    </httpProtocol>
  </system.webServer>

web.config 파일에 위와 같이 설정하시면 해결~!
구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...