HttpRequest

HTTP 요청은 웹 애플리케이션에서 서버와 데이터를 교환하는 데 사용하는 기본 메커니즘입니다.
많은 JavaScript 툴킷과 프레임워크에는 HTTP 요청을 만들기 위한 자체 래퍼(wrappers)가 있습니다.

예를 들어 Angular에는 $ http 서비스가 있고 jQuery에는 ajax () 메서드가 있습니다. 마음에 드는 것이 있으면 Wijmo와 함께 사용할 수 있습니다.

외부 툴킷 및 프레임 워크에 대한 종속성을 줄이고 싶다면 Wijmo의 간단하고 유연한 httpRequest 메서드를 대신 사용할 수 있습니다 .

Example
wijmo.httpRequest('http://services.odata.org/Northwind/Northwind.svc/Customers?$format=json', {
success: function (xhr) {
var response = JSON.parse(xhr.responseText),
customers = response.value;
// do something with the customers...
}
});

이 샘플은 httpRequest 메서드를 사용하여 OData 서비스에서 항목을 검색합니다.