一、URL的概念 统一资源定位符(或称统一资源定位器/定位地址、URL地址等,英语:Uniform Resource Locator,常缩写为URL),有时也被俗称为网页地址(网址)。如同在网络上的门牌,是因特网上标准的资源的地址(Address)。 二、URL的格式 2.1 标准格式 协议类型:[ ...
分类:
Web程序 时间:
2020-07-05 00:26:37
阅读次数:
96
因为最近发现在网上查找资料的时候,总会因为版本不一样造成各种问题,所以以后的所有文章都会注明使用版本。本次使用的是MySQL数据库5.6.28版本 安装过程省略,在安装结束后会有这么一段提示 A RANDOM PASSWORD HAS BEEN SET FOR THE MySQL root USER ...
分类:
数据库 时间:
2020-07-04 18:37:29
阅读次数:
67
Nodejs官网下载安装包,按指引安装: This package has installed: * Node.js v14.3.0 to /usr/local/bin/node * npm v6.14.5 to /usr/local/bin/8pm Make sure that /usr/loca ...
分类:
Web程序 时间:
2020-07-04 17:23:20
阅读次数:
82
部署Nextcloud服务 使用本项目可以利用docker和docker-compose部署Nextcloud服务(nginx-fdm-postgres)。 使用方法: 0. 安装 docker 和 docker-compose 你必须提前将docker和docker-compose安装配置好。本项 ...
分类:
其他好文 时间:
2020-07-04 15:39:27
阅读次数:
166
局部内部类 示例代码 //外部类 public class Outer { private String name = "qiudajiang"; private int age = 10; //外部类方法 public void showOuter(){ //局部变量 String address ...
分类:
其他好文 时间:
2020-07-04 11:54:49
阅读次数:
66
AttributeError: module ‘tensorflow‘ has no attribute ‘compat‘
分类:
其他好文 时间:
2020-07-04 09:17:23
阅读次数:
193
[2020-07-03T15:18:23,147][WARN ][o.e.c.c.ClusterFormationFailureHelper] [localhost.localdomain] master not discovered yet, this node has not previousl ...
分类:
其他好文 时间:
2020-07-03 23:12:49
阅读次数:
580
一、普通store中使用mapState、mapGetters辅助函数: 在src目录下建立store文件夹: ? index.js如下: import Vue from 'vue'; import Vuex from 'vuex'; Vue.use(Vuex); const state={//要设 ...
分类:
其他好文 时间:
2020-07-03 21:29:42
阅读次数:
60
A bus has n stops numbered from 0 to n - 1 that form a circle. We know the distance between all pairs of neighboring stops where distance[i] is the di ...
分类:
其他好文 时间:
2020-07-03 19:42:49
阅读次数:
68
控制器中关键代码如下: // 查询状态为1的用户数据 并且每页显示10条数据 $list = Db::name('user')->where('status',1)->paginate(10); // 把分页数据赋值给模板变量list $this->assign('list', $list); // ...
分类:
其他好文 时间:
2020-07-03 17:11:12
阅读次数:
131