码迷,mamicode.com
首页 >  
搜索关键字:apply    ( 3610个结果
微信小程序使用wepy开发之分包操作
背景: 使用VsCode +wepy框架开发微信小程序 操作: 分包 <config> { pages: [ 'pages/login/index', 'pages/qrcode/index', ], // 分包 , 红色字体为固定部分 'subPackages': [ { 'root': 'pag ...
分类:微信   时间:2020-06-04 19:27:00    阅读次数:186
js 中 call() apply() bind() 的用法
先看明白下边的例子 var name = '小王' var age = 17 var obj = { name: '小张', objAge: this.age, myFun: function () { console.log(`${this.name}年龄${this.age}`) } } con ...
分类:移动开发   时间:2020-06-04 19:21:32    阅读次数:68
Why invoke apply instead of calling function directly?
I think the explanation from the Mozilla Docs describes it well: You can assign a different this object when calling an existing function. this refers ...
分类:移动开发   时间:2020-06-04 14:04:51    阅读次数:92
配置Pod的 /etc/hosts
某些情况下,DNS 或者其他的域名解析方法可能不太适用,您需要配置 /etc/hosts 文件,在Linux下是比较容易做到的,在 Kubernetes 中,可以通过 Pod 定义中的 hostAliases 字段向 Pod 的 /etc/hosts 添加条目。 适用其他方法修改 Pod 的 /et ...
分类:其他好文   时间:2020-06-04 12:07:46    阅读次数:80
【leetcode】1432. Max Difference You Can Get From Changing an Integer
题目如下: You are given an integer num. You will apply the following steps exactly two times: Pick a digit x (0 <= x <= 9). Pick another digit y (0 <= y < ...
分类:其他好文   时间:2020-06-03 23:33:43    阅读次数:70
关于push和concat的性能问题
var arr1 = [1,2,3,-1]var arr2 = [4,5,6,7,8,9,10,12,13,14,15,16,17,18,29,30,31,32,33,34,35,36,37,38,39,40]var arr = arr1.concat(arr2)借用apply方法 ,push、sp ...
分类:其他好文   时间:2020-06-03 15:59:32    阅读次数:131
call bind的实现以及数组常用方法
1.call 实现(apply 类似) Function.prototype.call= function(context){ context = context || window; context.fn = this; let args =[]; for(let i=1;i<arguments. ...
分类:编程语言   时间:2020-06-03 00:54:51    阅读次数:83
【2020ERRORS】Django数据库执行数据库迁移命令时出现的两种错误
ERROR 1 : Running migrations: No migrations to apply. No changes detected Running migrations: No migrations to apply. 成功之后,数据库会新增多张表: ...
分类:数据库   时间:2020-06-02 22:57:55    阅读次数:118
Helm
为什么需要Helm? K8S上的应用对象,都是由特定的资源描述组成,包括deployment、service等。都保存各自文件中或者集中写到一个配置文件。然后kubectl apply –f 部署。 如果应用只由一个或几个这样的服务组成,上面部署方式足够了。 而对于一个复杂的应用,会有很多类似上面的 ...
分类:其他好文   时间:2020-06-02 13:01:00    阅读次数:79
IIS 10 设置FTP Passive Mode 固定端口
1. Run [Start] - [Server Manager] and Click [Tools] - [Internet Information Services (IIS) Manager]. 2. Select Hostname on the left pane and Click [FT ...
分类:其他好文   时间:2020-06-02 12:59:21    阅读次数:80
3610条   上一页 1 ... 16 17 18 19 20 ... 361 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!