
简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
docker直接阿里云拉取镜像
Docker默认配置下若本地代理镜像不存在目标镜像,会直接从远程仓库拉取。示例中使用阿里云镜像源拉取MySQL 5.6镜像: docker pull registry.cn-hangzhou.aliyuncs.com/acs-sample/mysql:5.6 该命令会绕过本地缓存直接获取指定版本的MySQL镜像。
vue的初始化页面
vue数据内容为接口请求export default {name: "weather",created() {axios.get("/laravel/test").then(response => {var res = response.data;console.log(res);this.info_msg = res;...
laravel笔记-缓存
laravel缓存介绍:·Laravel为各种不同的缓存系统提供了一直的API·Laravel支持各种常见的后端缓存系统 如:File MemcachedRedis主要方法:【put()【add()【forever()【has()【get()【pull()【forget()//put() 添加//Cache::pu...
到底了