jsonp 썸네일형 리스트형 [jsonp] jsonp 방식 으로 데이터 통신 자바 스크립트는 서로 다른 도메인에 대한 요청을 보안상 제한합니다. 이 정책을 동일근원정책(Same-Origin Policy, SOP) 정책이라고 하며, 이러한 정책으로 인해 생기는 이슈를 cross-domain 문제라고 합니다. 개발을 하다보면 어쩔 수 없이 다른 도메인으로부터 데이터를 가져와야 하는 경우가 많기에 많은 사람들이 cross-domain 이슈를 겪고 있습니다. 이런 경우 사용할 수 있는 것이 JSONP(JSON with Padding)입니다. 처음 JSONP를 접했을 때 잘 정리가 되지 않았던, 사용할 때 명확히 알아야 할 것들을 정리해보았습니다. 1. JSONP 요청은 일반 AJAX 요청과 다르다 //-- JSON $.ajax({ url: url, dataType: 'json', dat.. 더보기 PHP: How to easily provide JSON and JSONP PHP: How to easily provide JSON and JSONP http://www.geekality.net/2010/06/27/php-how-to-easily-provide-json-and-jsonp/ Would you like to grab some server-side data through an AJAX call? For example by using the handy jQuery.ajax method? A good data format to use then is JavaScript Object Notation, more commonly known as JSON. Providing data in the JSON format with PHP is super duper simple 더보기 이전 1 다음