上一页 1 ··· 439 440 441 442 443 444 445 446 447 ··· 462 下一页
摘要: 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 阅读(299) 评论(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 阅读(635) 评论(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 阅读(229) 评论(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 阅读(194) 评论(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 阅读(195) 评论(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 阅读(178) 评论(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 阅读(294) 评论(0) 推荐(0) 编辑
摘要: The app structure:Front-end: app.js/** * Created by Answer1215 on 12/9/2014. */'use strict';function MainCtrl(PeopleService) { var vm = this; vm... 阅读全文
posted @ 2014-12-27 05:21 Zhentiw 阅读(374) 评论(0) 推荐(0) 编辑
摘要: ThengCloakdirective is used to prevent the Angular html template from being briefly displayed by the browser in its raw (uncompiled) form while your a... 阅读全文
posted @ 2014-12-27 02:23 Zhentiw 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Learn how to manually control how asynchronous requests are handled with the use of promises. Because $http is built to work with promises, we saw a f... 阅读全文
posted @ 2014-12-26 16:34 Zhentiw 阅读(157) 评论(0) 推荐(0) 编辑
上一页 1 ··· 439 440 441 442 443 444 445 446 447 ··· 462 下一页