• 关于redux

    react将dom解耦,不用直接操作dom,使用了状态机制,当状态改变时视图就会相应更新。我们知道在react中,父组件可以将一些状态传递给子组件,让子组件的视图相应更新,这时我们会发现,只有有关联的组件才可以依次传递,那些没有父组件与子组件关系的组件,这些组件之...

    2018-10-08 01:31:17

  • 自定义组件v-model的实质性理解

    用了几个月Vue一直很纠结自定义组件的v-model实现,最近开始学习React时,React中受控组件与状态提升的理念与v-model不谋而合。 转载请注明地址:https://www.cnblogs.com/sonoda-umi/p/9750188.html 在Vue与React中其实都存在单向数据流的概念,只不过Vue中通过各种语...

    2018-10-08 01:31:16

  • 函数内部属性之arguments和this

    在函数内部,有两个特殊的对象:arguments和this。 1、arguments arguments是一个类数组对象。包含着传入函数中的所有参数。但这个对象还有一个名叫callee的属性,该属性是一个指针,指向拥有这个arguments对象的函数。 经典案例:阶乘函数 function factorial(num){ i...

    2018-10-08 01:31:15

  • react-native 在新版Xcode(10+)中运行出现的问题:

    报错: 1 ~~~~/node_modules/react-native/third-party/glog-0.3.4': 2 C compiler cannot create executables 3 4 5 Command PhaseScriptExecution emitted errors but did not return a nonzero exit code to indicate failure 6 7 8 9 :-1: Build input file ca...

    2018-10-06 08:06:41

  • koa源码解读

    koa是有express原班人马打造的基于node.js的下一代web开发框架。koa 1.0使用generator实现异步,相比于回调简单和优雅和不少。koa团队并没有止步于koa 1.0, 随着node.js开始支持async/await,他们又马不停蹄的发布了koa 2.0,koa2完全使用Promise并配合async/await来...

    2018-10-06 08:06:38

  • Play vue.js with constant value in SailsJS

    SailsJS supplies a utility module calledparasails, which defines two elements, ajax-form and ajax-button to allow user to create AJAX form easily. In the most cases, the user could define a form as this in SailsJS HTML ajax-form action ="submitSomet...

    2018-10-06 08:06:28

  • javascript检查数据中是否存在相同的元素

    这里是两个用于数组中查找重复元素的demo,可以看看啦 !DOCTYPE html html lang="en" head meta charset="UTF-8" titleTitle/title /head body input type="text" id="Values" style="width: 100px;height: 25px;" button id="gain"获取/button !--gain-- /body script...

    2018-10-06 08:06:26

  • 移动端事件(2)——事件对象

    当给某个元素加上了事件绑定函数之后,事件函数默认的第一个参数就是事件对象。 事件对象: 当用户在浏览器下触发了某个行为,事件对象会记录用户操作时一些细节信息 touches 当前位于*屏幕*上的所有手指的一个列表 targetTouches 位于当前DOM元素上的手指的一个列表 c...

    2018-10-06 08:06:22

  • 移动端事件(1)

    移动端的三大事件: 手指按下: touchstart 手指移动: touchmove 手指抬起 touchend 移动端点透问题的发生: meta name="viewport" content="width=device-width,user-scalable=no"/ style #div1{ width:200px; height: 200px; background:red; position: absolute; top...

    2018-10-06 08:06:20

  • 获取url查询参数的方法

    /** * 获取url查询参数的方法 * @param name * @returns {null} * @constructor */function GetQueryString(name) { var reg = new RegExp("(^|)"+ name +"=([^]*)(|$)"); var r = window.location.search.substr(1).match(reg); if (r!=null) return unescape(r[2]);...

    2018-10-06 08:06:17

2