首页
首页
沸点
课程
直播
活动
竞赛
商城
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
weber
进军明天
创建于2021-07-06
订阅专栏
ioser 写 web, 用来记录整理过程, 作为web学习书签
暂无订阅
共14篇文章
创建于2021-07-06
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
Vue 笔记
============== vue ================== https://jiongks.name/blog/vue-code-review/ 在进行DOM树的渲染时,render渲
7.20 笔记
========= 7.20 笔记 ========= bfc: Block formating context (块级格式化上下文) 作用: margin 重叠, float 脱离文档流, 导致高度
websocket 笔记
=================== websocket ==================== 概念 websocket是一种通信协议,建立在tcp之上。 常用在 server <--> cli
hybrid 笔记
Hybrid https://juejin.cn/post/6844903640520474637#heading-5 https://zhuanlan.zhihu.com/p/78956029 方案
dart 初记
=========================Dart========================= 语言特性: 强类型,类型安全(空安全; 可移植; 可以JIT and AOT; Dart
flutter 初记
```js ===================flutter================== https://www.zhihu.com/search?type=content&q=flutt
小程序自话
```js ==================miniprod======================== #原理: 视图: webview 渲染 js逻辑: jsCore 进程 视图 - js
rn-初探
```js ====================== react-native ===================== 原理: 通过jscore 通信, 调用原生api 基本需求: jsx,
Object 再读
```js /** Object 相关: prototype.toString: 可以类型判断 prototype.valueOf : 返回原始值,Math 和 Error 对象没有 valueOf
proto 以及 原型链再读
/** 概念: prototype proto constructor .prototype .contructor 关系: p.proto === Product.prototype Product
new 都干些啥
/** new - 1.新建obj = {} 2.prototype 指向构造函数prototype 3.执行构造函数, bind this 4.返回, 如果构造函数有返回对象,则返回该对象; 否则返
js 传参
// 传参数: 值就是copy // 对象 只传递 引用 function test() { let num = 1; for (const el of arguments) { if(typeof
typeof instanceof
/** instanceof 检测原型链, Object.create(proto) */ const fn = function() {} const obj = {} const sym = Sy
Promise
// 用来异步编程,优雅处理异步回调,避免回调地狱 /** Promise A / Promise A+ 规范: Promise 会有三种状态 Pending 等待 Fulfilled 完成 Reje