码迷,mamicode.com
首页 >  
搜索关键字:rails ruby ror    ( 11879个结果
嵌套路由<router-view></router-view>
路由嵌套 官方文档及源码:https://github.com/vuejs/vue-router/blob/1.0/docs/zh-cn/nested.md 嵌套路由 嵌套路由和嵌套组件之间的匹配是个很常见的需求,使用 vue-router 可以很简单的完成这点。 假设我们有如下一个应用: <div ...
分类:其他好文   时间:2020-11-30 15:50:44    阅读次数:7
xcode-select: error: invalid developer directory 'path/to/Xcode.app'
一,问题 使用git命令时出现了错误: xcode-select: error: invalid developer directory 'path/to/Xcode.app' 二,尝试解决 我发现原因是最近写在卸载了‘巨无霸’Xcode,这时候也不想把xcode下载回来,于是我准备下载: xcod ...
分类:移动开发   时间:2020-11-30 15:19:53    阅读次数:13
使用C语言实现用数组构建二叉树并遍历
#include <stdio.h> typedef struct Node { int data; struct Node* lchild; struct Node* rchild; }Node; typedef Node* BinTree; int array[] = {1,2,3,4,5,6, ...
分类:编程语言   时间:2020-11-27 10:52:16    阅读次数:17
Oracle Data Guard 报错 ORA-16057: Data Guard 配置中没有服务
Oracle Data Guard 报错 ORA-16057: Data Guard 配置中没有服务器
分类:数据库   时间:2020-11-25 12:59:34    阅读次数:14
springboot 2.4.0 最新版本需在本地maven里添加mirror镜像地址
加上aliyun的镜像地址,我的maven setting.xml 里完整镜像地址如下: <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content ...
分类:编程语言   时间:2020-11-25 12:28:47    阅读次数:4
解决:setState() called after dispose() 内存泄漏问题
一、问题场景 网络请求成功前退出了页面,该 State 被从对象树卸载掉,而这时回调了网络请求的方法,方法中带有 setState 的调用,也就导致了该问题。 二、问题原因 State 对象被从对象数卸载释放之后再次调用 setState 就会报 setState() called after di ...
分类:其他好文   时间:2020-11-23 12:48:08    阅读次数:29
Docker----常用命令(镜像和容器的常用命令)
帮助命令 docker version #显示docker的版本信息 docker info #显示docker的系统信息,包括镜像和容器的数量 docker命令--help #帮助命令帮助文档的地址:https://docs.docker.com/engine/reference/commandl ...
分类:其他好文   时间:2020-11-23 11:51:54    阅读次数:2
【pandas】疑难杂症排除XLRDError:Unsupported format, or corrupt file
pandas做Excel合并报错了 XLRDError: Unsupported format, or corrupt file: Expected BOF record; found b'\x15Microso' 一次打出文件名,发现了临时文件,后来读取发现一样的错误, 再次定位,打开文件没有关闭 ...
分类:其他好文   时间:2020-11-21 12:24:37    阅读次数:5
【随手记录】关于Factory method 'eurekaApplicationInfoManager' threw exception; nested exception is java.lang.NullPointerException
最近项目上部署程序时候报eureka相关的NPE错误,如下: Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2020- ...
分类:移动开发   时间:2020-11-20 11:50:24    阅读次数:17
Vagrant box国内镜像
CentOS 6/7/8 修改链接中的版本号可以下载不同版本 http://mirrors.ustc.edu.cn/centos-cloud/centos/6/vagrant/x86_64/images/ 添加vagrant box到box list vagrant box add centos7 ...
分类:其他好文   时间:2020-11-20 11:25:01    阅读次数:5
11879条   上一页 1 ... 18 19 20 21 22 ... 1188 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!