关于this指向 如图: this基本指向 普通函数调用,此时 this 指向 window 构造函数调用, 此时 this 指向 实例对象 对象方法调用, 此时 this 指向 该方法所属的对象 箭头函数调用, 此时 this 指向 包裹箭头函数的第一个普通函数 改变this指向 bind() c ...
分类:
其他好文 时间:
2020-09-09 18:44:08
阅读次数:
29
错误提示如下: 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
需要安装 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
关闭防火墙 selinux systemctl stop firewalld.service #关闭防火墙 systemctl disable firewalld.service #关闭开机自启 setenforce 0 #临时解决selinux sed -i 's/^SELINUX=.*$/SEL ...
分类:
其他好文 时间:
2020-08-25 18:44:50
阅读次数:
60
调用事件处理函数,this指向函数,this不是指向实例,解决这个问题就是给调用函数时bind(this)改变this指向或者使用箭头函数 1、bind改变this指向 export default class Home extends Component { constructor(){ supe ...
分类:
其他好文 时间:
2020-08-24 16:37:47
阅读次数:
49
一、对象语法 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
作者:李毓在正常情况下,控制台输入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安装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关键知识强化:包括/deep/(深度选择器)、@click.native、属性绑定简化写法(v-bind)、attribute属性的绑定和多个prop的简化写法($attrs),v-model的含义,原生事件监听器($listeners)等 1./deep/(深度选择器) 问题:vue组件中, ...
分类:
其他好文 时间:
2020-08-18 13:34:24
阅读次数:
69