AJAX를 통해 JSON으로 스크립트에 액세스하려고합니다 .AJAX는 Safari 및 기타 브라우저에서 잘 작동하지만 불행히도 Chrome에서는 실행되지 않습니다. 다음과 같은 오류가 발생합니다.
MIME 유형 ( 'application / json')이 실행 가능하지 않고 엄격한 MIME 유형 검사가 사용 가능하므로 '*'에서 스크립트 실행을 거부했습니다.
요청은 다음과 같습니다.
$.ajax({
url: "http://some_url/test.json?callback=?",
type: "GET",
dataType: 'json',
cache: true,
success: function (data, status, error) {
console.log('success', data);
},
error: function (data, status, error) {
console.log('error', data, status, error);
}
});
누구든지 이것에 대한 해결 방법이 있습니까?