본문 바로가기
728x90
반응형

IT/JavaScript와 Framework99

AngularJS 의 $state, $stateProvider ui-router 설명 https://uxicode.tistory.com/entry/uirouter-%EB%8C%80%EA%B0%95-%EC%A0%95%EB%A6%AC ui-router 대강 정리 ui-router ng-route를 보강한 라이브러리 주소: https://ui-router.github.io/ng1/docs/0.3.1/index.html#/api/ui.router ( 해당 주소로 가보면 튜토리얼도 잘 나와 있다. 하지만 아직도 헷갈림 ) .config()로.. uxicode.tistory.com 참고사이트 : https://ui-router.github.io/ng1/ UI-Router for AngularJS (1.x) The defacto standard for routing in Ang.. 2022. 5. 18.
AngularJS 의 envService, envServiceProvider 파일명 : angular-environment.js Provider 를 만드는 방식 angular.module('environment',[]). provider('envService', function() { ...) envService 를 envServiceProvider 는 위 방식으로 만들면 자동으로 생성되는게 아닌가 싶다. 2022. 5. 18.
javascript Blob 이해하기 Blob(Binary Large Object, 블랍)은 이미지, 사운드, 비디오와 같은 멀티미디어 데이터를 다룰 때 사용한다. Blob 생성시 파라미터로 array와 options 를 받는다. var blob = new Blob(array, options); 예) var blog = new Blob([blobArray], {type: 'video/mp4}); options 에 들어가는 값은 MIME 타입이다. 아래글 읽으며 추가 정리하자.. https://heropy.blog/2019/02/28/blob/ Blob(블랍) 이해하기 JavaScript에서 Blob(Binary Large Object, 블랍)은 이미지, 사운드, 비디오와 같은 멀티미디어 데이터를 다룰 때 사용할 수 있습니다. 대개 데이터의 .. 2022. 5. 18.
Promises - then, catch, all, race, finally Promises에 대한 설명이 잘 되어 있는 글이다. 일독해보길 권한다. https://ssungkang.tistory.com/entry/ES6-Promises-then-catch-all-race-finally [ES6] Promises - then, catch, all, race, finally 이번 포스팅에서는 js 의 Promises 에 대해서 알아보도록 하겠습니다. javascript 의 비동기성 사람은 한 번에 두 가지 일을 할 수가 없습니다. 흔히들 말하는 멀티태스킹도 실제로는 한 번에 두 가지 ssungkang.tistory.com 2022. 5. 18.
728x90
반응형