上一页 1 ··· 470 471 472 473 474 475 476 477 478 ··· 494 下一页
摘要: ui-router's states and AngularJS directives have much in common. Let's explores the similarities between the two and how these patterns have emerged i... 阅读全文
posted @ 2015-01-04 05:32 Zhentiw 阅读(445) 评论(0) 推荐(0)
摘要: Scope resolution of our Angular documents works exactly the same way scope resolution works in plain, old Javascript. The only difference here is that... 阅读全文
posted @ 2015-01-03 04:15 Zhentiw 阅读(279) 评论(0) 推荐(0)
摘要: Currently, the server.js is going way too long. In the real world application, it is likely that we are going to deal with more routers, whichi means ... 阅读全文
posted @ 2015-01-02 22:18 Zhentiw 阅读(200) 评论(0) 推荐(0)
摘要: For server.js, we update the code by using route instance. By using this, we can remove some duplicate code.For example:app.get('/people', function(re... 阅读全文
posted @ 2015-01-02 18:46 Zhentiw 阅读(307) 评论(0) 推荐(0)
摘要: In ES5, we have for ... in:var phones = ["iPhone", "Nexus", "Nokia"];for(i in phones){ console.log(phones[i]);}//iPhone//Nexus//NokiaWhat we get fr... 阅读全文
posted @ 2015-01-02 05:44 Zhentiw 阅读(645) 评论(0) 推荐(0)
摘要: ES6 provides Map, it is a set of k-v pair. Key can be number, string, object, function and even undefined.var m = new Map();Methods:1. set(k,v)m.set("... 阅读全文
posted @ 2015-01-02 05:43 Zhentiw 阅读(238) 评论(0) 推荐(0)
摘要: Es6 provides "Set", it likes array but the data inside should be unqiue."Set" is a construct function, you should call:var s = new Set();Methods:1.add... 阅读全文
posted @ 2015-01-02 05:35 Zhentiw 阅读(202) 评论(0) 推荐(0)
摘要: Define object:var color = "blue";var speed = 120;var car = {color, speed};console.log(car.color); // blueconsole.log(car.speed); // 120in ES5:var ca... 阅读全文
posted @ 2015-01-01 22:10 Zhentiw 阅读(203) 评论(0) 推荐(0)
摘要: Front-end changes:app.js: Uinsg $resource/** * Created by Answer1215 on 12/9/2014. */'use strict';function MainCtrl(People) { var vm = this; vm.... 阅读全文
posted @ 2014-12-28 04:34 Zhentiw 阅读(186) 评论(0) 推荐(0)
摘要: This lesson describes what is really happening when you use the angularfactory and how you can make your factories even more dynamic in creation.This ... 阅读全文
posted @ 2014-12-27 23:43 Zhentiw 阅读(304) 评论(0) 推荐(0)
上一页 1 ··· 470 471 472 473 474 475 476 477 478 ··· 494 下一页