码迷,mamicode.com
首页 >  
搜索关键字:ror    ( 7126个结果
Nginx部署vue项目
原文地址:https://www.cnblogs.com/mao2080/p/9340026.html 1、问题描述 给前端同事部署了web项目之后,访问发现除了index.html可以访问,其他的路径使用了“伪静态”。比如访问:http://localhost:8081/user/login,访问 ...
分类:其他好文   时间:2020-07-18 15:56:24    阅读次数:73
java之策略模式
1 //抽象被裝飾者 2 public abstract class Component{ 3 private String lsh="output:";//output:生成流水號 4 public abstract String operation();//抽象方法(包裝) 5 public S ...
分类:编程语言   时间:2020-07-18 13:36:48    阅读次数:80
Django中创建数据库报错:ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '=utf8' at line 1解决方案
一、问题描述 Django中执行create database charset=utf8;命令报错:ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your ...
分类:数据库   时间:2020-07-18 11:39:41    阅读次数:133
codewar刷题--8kyu--Grasshopper - Debug
原题目: Debug celsius converter Your friend is traveling abroad to the United States so he wrote a program to convert fahrenheit to celsius. Unfortunatel ...
分类:其他好文   时间:2020-07-18 11:23:22    阅读次数:62
java虚拟机详细图解9--JVM机器指令集
声明:本文摘抄自:https://blog.csdn.net/u010349169/article/details/50412126 Java虚拟机和真实的计算机一样,运行的都是二进制的机器码;而我们将.java 源代码编译成.class 文件,class文件便是Java虚拟机能够认识的二进制机器码 ...
分类:编程语言   时间:2020-07-17 19:23:20    阅读次数:66
在线更新ingress证书
1.制作新证书[root@elasticsearch01yaml]#kubectlcreatesecrettlsingress-secret2021--keyminminmsn.key--certminminmsn.crt2.在ingress替换secretName查看ingress[root@elasticsearch01yaml]#kubectlgetingressNAMEHOSTSADDRE
分类:其他好文   时间:2020-07-17 01:18:21    阅读次数:100
Zookeeper客户端连接报错
在Zookeeper下的bin目录执行 ./zkCli.sh 提示错误信息: INFO [main-SendThread(localhost:2181):ClientCnxn$SendThread@1025] - Opening socket connection to server localho ...
分类:其他好文   时间:2020-07-16 21:40:02    阅读次数:106
Git 撤销add的文件
Git冲突:commit your changes or stash them before you can merge. 解决办法 http://www.aikaiyuan.com/8875.html 用git pull来更新代码的时候,遇到了下面的问题: 1 2 3 4 error: Your ...
分类:其他好文   时间:2020-07-16 11:59:47    阅读次数:75
Ajax上传File对象到服务器
HTML代码: <input type="file" name="uploadFile" id="uploadFile"> JavaScript: $("#uploadFile").on("change", function() { var formData = new FormData(); // ...
分类:Web程序   时间:2020-07-16 11:47:13    阅读次数:82
Python-集合
集合是无序的,不重复的数据集合,它里面的元素是可哈希的(不可变类型),但是集合本身是不可哈希(所以集合做不了字典的键)的。 注意: 去重,把一个列表变成集合,就自动去重了 关系测试,测试两组数据之间的交集、差集、并集等关系 集合(set)是一个无序的不重复元素序列可以使用大括号{}或者set{}函数 ...
分类:编程语言   时间:2020-07-16 00:12:19    阅读次数:68
7126条   上一页 1 ... 29 30 31 32 33 ... 713 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!