hello world

angularjs遵循MVC模式,惯例来一个hello world吧



    
    


    

{{greeting.text}}, world

controllers.js中的内容

function HelloController($scope) {
    $scope.greeting = { text: "Hello"};
}

MVC写起来很不错的感觉~~

你可能感兴趣的:(hello world)