加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

[AngularJS 1] Introduction to AngularJS

发布时间:2020-12-17 10:32:47 所属栏目:安全 来源:网络整理
导读:introduction :this article is going to introduce AngularJS in generally. I will write it through five points.Number one is what is AngularJS.Number two is why use Angular.Number three is how angularJS works.Number four is about modules.Nu

introduction:this article is going to introduce AngularJS in generally. I will write it through five points.Number one is what is AngularJS.Number two is why use Angular.Number three is how angularJS works.Number four is about modules.Number five is my own summery.


Number one_what is it

Front -end javascript framework for creating web applications;

Open source maintained by Google;

MVC pattern

Handles common(and ofter trying tasks) such as DOM manipulation,updating UI based on data or input,registering callbacks;

Decarative programming


Number two_why use it

Good for dynamic web sites/web apps(VRUD based);

Framework imposes a structure that is good for organizetion;

Helps create responsive(fast) websites;

Easy to test-to create software that is easily maintained;


Number three_how it works

AngularJS will initialize when the DOM content is loaded;

Looks for the ng-app directive-if its found,that is the root of the app;

Directives can be declared a variety of ways:typically with the ng-prefix,but you can use data-ng;

It will load the module associated with the directive if specified;


PS: what is the difference between ng-prefix and data-ng? ok,when your brower's version is old,maybe you should use data-ng!


Number four_modules

what are modules?

It's containers for the various parts of your application(controllers,services etc). It's declarative-easy to understand. It's maintainable,readable,testable. It defines dependencies for our app.

Modules setup: A module is comprised of configuration and run blocks. Configuration blocks-executed during configuration and registration. Only peoviders and constants can be passed. Run blocks-happen after the injector is created. Only instances and constants can be passed in and is like a main method-it kickstarts the application.


PS:Modules can depend on other modules and they are only loaded once.


Number five_summery

first of all,let me show some code:

<span style="font-family:KaiTi_GB2312;font-size:18px;"><!doctype html>
<html ng-app>
	<head>
		<script src="http://code.angularjs.org/angular-1.0.1.min.js"></script>
	</head>
	<body>
		My name:<input type="text" ng-model="MyName" placeholder="please write down your name !">
		<hr>
		Hello,My name is {{MyName||''}}
	</body>
</html></span>
please run the code in your brower,then there is surprise for you.


I gonna publish my blog in english,Maybe it's not good at the beginning,but it's okay . the next blog is about Angular Controllers!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读