上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页
摘要: HTTP 常用方法:GET: 获取某个资源。POST: 创建一个新的资源。PUT: 替换某个已有的资源。PATCH: 修改某个已有的资源。DELETE:删除某个资源。 阅读全文
posted @ 2015-06-29 08:20 Coca-code 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1.使用React Native开发iOS应用需要OSX系统,Xcode,Homebrew,node,npm以及watchman。2. js与OC交互共11个步骤。 阅读全文
posted @ 2015-06-25 15:05 Coca-code 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1. 需要IOS的基础知识。2. JSX语法3. 虚拟DOM、单向数据注入(虚拟 DOM 到真实 DOM)4. react知识view,可以配合其他类库使用5. 重要方法: a. render();——返回一些列的组件。 b.this.props ;——获取父组件传递给子组件的数据。 c.this.... 阅读全文
posted @ 2015-06-25 11:51 Coca-code 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 一. 检查是否为函数。 function isFunction(x) { return Object.prototype.toString.call(x) === "[object Function]"; }; function square(n) { return n*n; };... 阅读全文
posted @ 2015-06-25 10:53 Coca-code 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1.作为命名空间的函数。形如: var someFn = (function(){var a = 0;return function f(){// ...};}());2. 闭包。 闭包内无法直接访问外部函数的参数,除非将外部的实参列给一个变量存储以来。例如:var outerArguments =... 阅读全文
posted @ 2015-06-23 16:02 Coca-code 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1. callee 正在执行的函数。使用方法:arguments.callee... caller 正在调用执行函数的函数。2.对象属性用作实参,形如:function fn(arg) { var arg.name = name || 'Josn', arg.age = age || 60 , ... 阅读全文
posted @ 2015-06-23 09:41 Coca-code 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 一. 构造函数调用 (分有无return)1. var obj = new Object(); var obj = new Object;这两行代码是等价的;表达式: new Obj.m();中,this指向的并不是Obj!!构造函数通常不是用return关键字;二. 间接调用1. call();和... 阅读全文
posted @ 2015-06-17 08:54 Coca-code 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 六.函数调用2. 例:var factorial =factorial(3) +factorial(8);3. var strict = (function() {return !this;}()); //定义并调用一个函数来确定当前脚本运行时是否为严格模式;4.七.方法调用1. f().m();... 阅读全文
posted @ 2015-06-16 10:22 Coca-code 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 一. 权威指南1. 对于类数组对象,我们不能用数组方法,但是我们可以用 Function.call(); 例如: Array.prototype.slice.call(arr,...); Array.prototype.silice.call(arr,...); Array.prot... 阅读全文
posted @ 2015-06-15 16:38 Coca-code 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1.为了避免类似这样的循环引用问题,最好是在不使用它们的时候手工断开原生js对象与DOM元素之间的连接:代码:myObject.element = null;element.o = null;2. isFinite();是有限数值3. 列宁认识逻辑方法: a. 握、研究事物的一切方面、联系、中... 阅读全文
posted @ 2015-06-12 17:08 Coca-code 阅读(170) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页