上一页 1 2 3 4 5 6 ··· 18 下一页
该文被密码保护。 阅读全文
posted @ 2020-02-14 12:36 殇之弑梦 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 旧版本: from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ url(r'^admin/', include(admin.site.urls)), url(r'^', i 阅读全文
posted @ 2020-02-01 20:37 殇之弑梦 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 特征布局实例讲习 1、特征布局:翻页(所需知识点:盒模型、内联元素) 2、特征布局:导航条01(所需知识点:盒模型、行内元素布局) 3、特征布局:导航条02(所需知识点:盒模型、浮动、定位、字体对齐) 4、特征布局:图片列表(所需知识点:盒模型、浮动) 5、特征布局:新闻列表(所需知识点:盒模型、浮 阅读全文
posted @ 2020-01-31 22:06 殇之弑梦 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 贪心: #include <cstdion> #include <algorithm> using namespace std; struct mooncake{ double store; //库存量 double sell; //总售价 double price; //单价 }cake[1010 阅读全文
posted @ 2019-11-10 08:49 殇之弑梦 阅读(180) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; const int maxn=100; int n,P[maxn],hashTable[maxn]={false}; void generateP(int index){ if(index == n+1){ count 阅读全文
posted @ 2019-11-09 21:33 殇之弑梦 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; const int maxn=100; char S[maxn][5],temp[5]; int hashTable[26*26*26+10]; int hashFunc(char S[],int len){ int 阅读全文
posted @ 2019-11-05 13:42 殇之弑梦 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 运行>>regedit>> 计算机\HKEY_USERS\S-1-5-21-1206544138-3066406840-1489814621-1001\Software\JavaSoft\Prefs\3t\mongochef\enterprise 将除了 installation-date-2018 阅读全文
posted @ 2019-10-25 15:35 殇之弑梦 阅读(1808) 评论(0) 推荐(0) 编辑
摘要: springboot整合elasticsearch时的版本问题: 解决方法把springboot版本降低: 把上面pom文件替换为: 阅读全文
posted @ 2019-10-06 14:05 殇之弑梦 阅读(2252) 评论(0) 推荐(0) 编辑
摘要: springboot2.0.2整合elasticsearch6.4.1:报错: 查看官方才发现6.X不支持一个index多个type了 解决方法,看看是否已经存在index和type: 删除或者重新新建一个indexName 阅读全文
posted @ 2019-10-06 14:01 殇之弑梦 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: 这是查询指定IP地址的方法,还可以直接查看当IP地址1. js方法 <script type="text/javascript" src="[http://ip.chinaz.com/getip.aspx](http://ip.chinaz.com/getip.aspx)"></script>,可以 阅读全文
posted @ 2019-10-05 22:19 殇之弑梦 阅读(612) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页