关于new的原理可参考:https://www.cnblogs.com/guanghe/p/11356347.html 下面是实现代码: function New(fn){ //fn是父类 var res = {}; if(fn.prototype !== null) { res.__proto__ ...
分类:
Web程序 时间:
2020-04-15 10:59:53
阅读次数:
68
#![feature(core_intrinsics)] fn print_type_of<T>(_: T) { println!("{}", unsafe { std::intrinsics::type_name::<T>() }); } fn main() { print_type_of(32. ...
分类:
其他好文 时间:
2020-04-14 16:37:56
阅读次数:
316
在weui.js源码中找到以下方法: _util2.default.fn.scroll = function (options) { var _this = this; var defaults = _util2.default.extend({ items: [], // 数据 scrollabl ...
分类:
其他好文 时间:
2020-04-14 10:49:19
阅读次数:
127
为确保Array每次循环等待上次操作完成,必须在每次循环中使用异步函数 const arr = [1, 2, 3]; async function fn() { await arr.reduce(async (accumulator, currentValue) => { await accumul ...
分类:
其他好文 时间:
2020-04-10 14:43:09
阅读次数:
84
1.ES5和ES6声明变量的方式对比 ES5中声明变量的方式: //1.通过var声明 var num; //2.函数方式声明 function fn(num){ return num; } fn(10); ES6中声明变量的方式: //1.使用let声明 let a = 10; //2.使用con ...
分类:
其他好文 时间:
2020-04-09 12:15:23
阅读次数:
70
1、安装jsonp cnpm install --save jsonp 2、jsonp API jsonp( url, opts, fn ) 3、封装jsonp方法 src/assets/js/jsonp.js import jsonp from 'jsonp'; /*data格式案例 { id:1 ...
分类:
Web程序 时间:
2020-04-06 15:54:03
阅读次数:
74
aiohttp分为服务器端和客户端,本文只介绍客户端。由于上下文的缘故,请求代码必须在一个异步的函数中进行: async def fn(): pass 安装 pip install aiohttp 基本语法 async with aiohttp.request('GET','https://gith ...
分类:
Web程序 时间:
2020-04-04 17:22:44
阅读次数:
117
<script> // arguments 的使用 只有函数才有 arguments对象 而且是每个函数都内置好了这个arguments function fn() { // console.log(arguments); // 里面存储了所有传递过来的实参 arguments = [1,2,3] ...
分类:
Web程序 时间:
2020-04-02 22:51:13
阅读次数:
88
小程序图片上传封装 app.js中 写入 wxPromisify(fn) { return function (obj = {}) { return new Promise((resolve, reject) => { obj.success = function (res) { resolve(r ...
分类:
微信 时间:
2020-04-01 16:39:10
阅读次数:
145
pycharm快捷键: https://blog.csdn.net/weixin_37292229/article/details/81737194,移动到行首尾:fn+home/end pycharm设置模板: https://jingyan.baidu.com/article/29697b91e ...
分类:
其他好文 时间:
2020-04-01 01:04:30
阅读次数:
65