码迷,mamicode.com
首页 >  
搜索关键字:bind    ( 6919个结果
关于this指向
关于this指向 如图: this基本指向 普通函数调用,此时 this 指向 window 构造函数调用, 此时 this 指向 实例对象 对象方法调用, 此时 this 指向 该方法所属的对象 箭头函数调用, 此时 this 指向 包裹箭头函数的第一个普通函数 改变this指向 bind() c ...
分类:其他好文   时间:2020-09-09 18:44:08    阅读次数:29
Redis报错: Caused by: io.lettuce.core.RedisConnectionException: DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, ...
错误提示如下: org.springframework.data.redis.RedisSystemException: Redis exception; nested exception is io.lettuce.core.RedisException: io.lettuce.core.Redi ...
分类:其他好文   时间:2020-08-28 14:41:38    阅读次数:71
小程序scroll-view滑动页面切换Tab
需要安装 vant-weapp<view> <view class="inp-box"> <van-search value="{{ inpVal }}" placeholder="请输入名称" use-action-slot bind:change="searchInp"> <view style ...
分类:微信   时间:2020-08-26 18:49:15    阅读次数:88
contes7安装dns bind
关闭防火墙 selinux systemctl stop firewalld.service #关闭防火墙 systemctl disable firewalld.service #关闭开机自启 setenforce 0 #临时解决selinux sed -i 's/^SELINUX=.*$/SEL ...
分类:其他好文   时间:2020-08-25 18:44:50    阅读次数:60
react-调用函数this丢失问题
调用事件处理函数,this指向函数,this不是指向实例,解决这个问题就是给调用函数时bind(this)改变this指向或者使用箭头函数 1、bind改变this指向 export default class Home extends Component { constructor(){ supe ...
分类:其他好文   时间:2020-08-24 16:37:47    阅读次数:49
vue动态绑定:class的几种方式
一、对象语法 1、给v-bind:class 设置一个对象,可以动态地切换class,例如: <div id="app"> <div :class="{'active':isActive}"></div> </div> <script> var app = new Vue({ el:'#app', ...
分类:其他好文   时间:2020-08-24 15:16:08    阅读次数:45
K8S中安装metrics-server的正确方式
作者:李毓在正常情况下,控制台输入kubectltoppods命令,会返回如下提示:[root@adm-master~]#kubectltoppodsErrorfromserver(NotFound):theservercouldnotfindtherequestedresource(getserviceshttp:heapster:)这是因为还缺少个组件,这个组件叫做metric-server。
分类:其他好文   时间:2020-08-20 18:27:51    阅读次数:67
寒武纪二面:
2020.08.05 1、多线程 2、IPC、共享内存 3、bind 4、合并n个有序链表 (力扣原题 使用最小堆会快一些) #include <queue> using namespace std; struct ListNode { int val; ListNode* next; ListNo ...
分类:其他好文   时间:2020-08-20 18:20:10    阅读次数:118
NFS的安装使用
NFS安装yuminstallnfs*rpcbind-yecho"/ssf*(rw,no_root_squash,no_all_squash,sync)">>/etc/exportsservicerpcbindstartservicenfsstartchmod766/ssf配置文件详解vim/etc/exports/data/lys192.168.2.0/24(rw,no_root_s
分类:其他好文   时间:2020-08-18 13:40:28    阅读次数:68
vue关键知识强化
vue关键知识强化:包括/deep/(深度选择器)、@click.native、属性绑定简化写法(v-bind)、attribute属性的绑定和多个prop的简化写法($attrs),v-model的含义,原生事件监听器($listeners)等 1./deep/(深度选择器) 问题:vue组件中, ...
分类:其他好文   时间:2020-08-18 13:34:24    阅读次数:69
6919条   上一页 1 ... 14 15 16 17 18 ... 692 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!