Coding343 [W3Schools AngularJS 한글강좌] Directives * ALL COPYRIGHTS are at w3schools. This article's purpose is only for study. *AngularJS DirectivesAngularJS directives are extended HTML attributes with the prefix ng-.AngularJS를 사용하려면 ng- 라는 prefix를 붙여야 한다.ng-app 는 AngularJS application을 초기화한다.ng-init 은 application data를 초기화한다.ng-model 은 INPUT, SELECT, TEXTAREA 등 HTML 요소들의 값을 binding한다.Read about all AngularJS directives in our AngularJS direct.. 2017. 1. 16. [W3Schools AngularJS 한글강좌] Modules * ALL COPYRIGHTS are at w3schools. This article's purpose is only for study. *AngularJS의 module은 application을 정의한다.module은 application의 다른부분을 위한 컨테이너이다.module은 application controllers를 위한 컨테이너이다.Controllers는 항상 module에 속한다.Creating a Modulemodule은 angular.module를 사용해서 생성할 수 있다.... var app = angular.module("myApp", []); "myApp"매개 변수는 응용 프로그램이 실행될 HTML 요소를 나타낸다.Adding a Controllercontroller를 추가하고 .. 2017. 1. 16. [W3Schools AngularJS 한글강좌] Expressions * ALL COPYRIGHTS are at w3schools. This article's purpose is only for study. *AngularJS 표현식AngularJS 의 표현식은 다음과 같다: {{ expression }}. (다음과 같은 방법으로도 가능: ng-bind="expression")AngularJS 은 표현식을 해결하고 표현식이 쓰여지는 곳의 결과를 정확하게 반환합니다.AngularJS 표현식 은 JavaScript의 표현식과 비슷하다. (리터럴, 연산자, 변수를 포함할 수 있다.)예제 : {{ 5 + 5 }} 또는 {{ firstName + " " + lastName }}Example My first expression: {{ 5 + 5 }} Try it Yourself »n.. 2017. 1. 16. [W3Schools AngularJS 한글강좌] Intro * ALL COPYRIGHTS are at w3schools. This article's purpose is only for study. *AngularJS IntroductionAngularJS 는 Javascript framework 이다. 태그를 통해 사용할 수 있다.AngularJS is a JavaScript FrameworkAngularJS 는 Javascript의 framework이므로 라이브러리는 Javascript로 작성됐다.Javascript 파일로 배포되며 아래와 같이 script 태그를 통해 사용할 수 있다.AngularJS Extends HTMLng-app 는 AngularJS application 을 의미한다.ng-model 은 INPUT, SELECT, TEXTAREA 등과 같.. 2017. 1. 16. 리눅스 서버시간 변경하는법 리눅스 서버시간 한국시간으로 변경하는법. 리눅스에서 date를 통해 서버시간을 확인해보면 한국시간과 다른점을 알 수 있다.이는 리눅스에서 시간대 설정을 default 로 외국시간으로 해놨기 때문이다.아래와 같은 간단한 방법을 통해 한국시간대로 설정할 수 있다. 먼저 ls /usr/share/zoneinfo 를 통해 서버에서 사용가능한 시간대를 알아본다. ls /usr/share/zoneinfo/Asia 에 Seoul 이 존재하면 사용가능한 환경이다. cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime 명령을 통해 서울의 시간으로 로컬시간을 덮고date 명령을 통해 서버시간을 확인해보면 정상적으로 동기화가 된 것을 확인할 수 있다. 2017. 1. 15. PHP 파일업로드 [ upload.php ] [ upload_ok.php ] [ 참고 ] bool is_uploaded_file(string filename)파일이 HTTP 프르토콜의 POST방식을 통해 업로드되었는지를 확인한다. bool move_uploaded_file(string filename, string destination)업로드 된 파일을 지정한 위치로 옮긴다. $_FILES["inputname"]["name"]파일의 실제 이름$_FILES["inputname"]["type"]파일의 MIME 타입(ex: "image/gif")$_FILES["inputname"]["size"]파일의 크기 (바이트)$_FILES["inputname"]["tmp_name"]임시 디렉토리에 전송된 파일의 이름$_FILES["inp.. 2017. 1. 15. 이전 1 ··· 43 44 45 46 47 48 49 ··· 58 다음