AngularJS
각도 MVC
수색…
소개
AngularJS 에서 MVC 패턴은 JavaScript 및 HTML로 구현됩니다. 뷰는 HTML로 정의되고 모델과 컨트롤러는 JavaScript로 구현됩니다. 이러한 구성 요소를 AngularJS에 결합하는 방법에는 여러 가지가 있지만 가장 간단한 형식은보기로 시작합니다.
컨트롤러가있는 정적 뷰
MVC 데모
안녕하세요 세계컨트롤러 기능 정의
var indexController = myApp.controller("indexController", function ($scope) {
// Application logic goes here
});
모델에 정보 추가
var indexController = myApp.controller("indexController", function ($scope) {
// controller logic goes here
$scope.message = "Hello Hacking World"
});
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow