This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.
네트워크 정보 API는 사용자 기기의 현재 대역폭이나 과금이 되는 연결인지와 같은 시스템의 연결 정보를 알려줍니다. 이를 이용해서 사용자에게 높은 용량의 콘텐츠를 제공할지 낮은 용량의 콘텐츠를 제공할지 사용자의 연결 상태에 따라서 제공할 수 있습니다. 전체 API는 DOM에 추가된 단일한 객체로 구성되어 있습니다: window.navigator.connection
.
연결상태 변경 감지
이 예제는 사용자의 연결상태 변화를 감시합니다. 사용자가 비싼 망에서 싼 망으로 이동할 때 사용자가 추가적인 비용을 지불하지 않게 하기 위해서 전송량을 감소시키는 등과 같은 행동을 할 수 있게 앱이 경고를 하는 일과 비슷합니다.
var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection; function updateConnectionStatus() { alert("Connection bandwidth: " + connection.bandwidth + " MB/s"); if (connection.metered) { alert("The connection is metered!"); } } connection.addEventListener("change", updateConnectionStatus); updateConnectionStatus();
명세
Specification | Status | Comment |
---|---|---|
Network Information API | Working Draft | Initial specification |
브라우저 호환성
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | Not supported | 12.0 moz | Not supported | Not supported | Not supported |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 2.2 webkit | 12.0 moz | 1.0.1 moz | Not supported | Not supported | Not supported |
Gecko notes
- The Network API can be disabled using the
dom.network.enabled
preference.