
简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
redis写入数据时报错:(error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for de
本文主要参考了Vue2.0 新手完全填坑攻略—从环境搭建到发布——Jinkey 原创。跟其主要区别在于本文使用了element ui和其提供的element starter,同时本文不涉及vue-resource。之前的构建过程见一个初学者的vue2.0练习程序。源码可以在github看到。首先在main.js中引入vue-resourceimport VueResource from '
使用vue cli创建一个webpack工程加入vue-router然后使用路由引入一个新的组件。这时路由和链接是这样写的const router = new VueRouter({mode: 'history',base: __dirname,routes: [{path: '/first',component: firstCom
我准备在我的电脑上访问同事的redis数据库,使用redis-cli -h ip -p port无法连接。查了以后发现是redis配置问题。首先,停止redis服务。然后,修改redis.conf文件,将其中的bind 127.0.0.1注释掉,同时将protected-mode yes改为no。最后,重启redis。问题解决。