1 const domainUrl = getApp().data.domainUrl; 2 Page({ 3 data: {}, 4 onLoad: function (options) { 5 wx.getSystemInfo({ 6 success(res) { 7 if (res.envir ...
分类:
微信 时间:
2020-11-23 12:11:51
阅读次数:
25
问题一: [root@cdeba90ec46e ~]# ./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module bash: ./configure: No such fil ...
分类:
其他好文 时间:
2020-11-23 12:11:38
阅读次数:
5
#DB:数据库 保存一组有组织的数据的容器 #DBMS 数据管理系统又称数据库管理软件 #SQL :结构化查询语音 安装目录下 C:\Program Files\MySQL\MySQL Server 5.5\bin\MySQLInstanceConfig.exe可以配置 数据存放目录 C:\Prog ...
分类:
数据库 时间:
2020-11-23 12:11:23
阅读次数:
14
a、可变性:String类中使用字符数组保存字符串,private final char value[],所以string对象是不可变的。StringBuilder与StringBuffer都继承自AbstractStringBuilder类,在AbstractStringBuilder中也是使用字 ...
分类:
其他好文 时间:
2020-11-23 12:11:07
阅读次数:
5
django解决跨域问题 1 使用第三方模块django-cors-headers 1.1 安装 pip install django-cors-headers 1.2 配置 INSTALLED_APPS = [ 'corsheaders', ] MIDDLEWARE = [ 'corsheader ...
分类:
其他好文 时间:
2020-11-23 12:10:55
阅读次数:
6
一 线程池工具类 import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.ThreadPoolExecutor; im ...
分类:
编程语言 时间:
2020-11-23 12:10:38
阅读次数:
7
靶场地址 http://59.63.200.79:8003/bluecms/uploads/ 百度查询了bluecms的相关漏洞 发现存在sql注入,且sql注入点在如下网页 http://59.63.200.79:8003/bluecms/uploads/ad_js.php?ad_id=1 经过探 ...
分类:
其他好文 时间:
2020-11-23 12:10:21
阅读次数:
4
第一点:Java代码实现文件上传 FormFile file = manform.getFile(); String newfileName = null; String newpathname = null; String fileAddre = "/numUp"; try { InputStre ...
分类:
Web程序 时间:
2020-11-23 12:10:00
阅读次数:
15
SHA1 VS RSA: what's the difference between them? Fundamentally different. SHA1 is a hash algorithm, which is a one way function, turning an input of a ...
分类:
其他好文 时间:
2020-11-23 12:09:41
阅读次数:
4
使用 Python 获取B站(Bilibili.com)某一用户(根据用户uid)所上传的所有视频链接及其相关信息。 ...
分类:
编程语言 时间:
2020-11-23 12:09:26
阅读次数:
6
ERROR Failed to compile with 4 errors These relative modules were not found: * ../../../public/ueditor/lang/zh-cn/zh-cn.js in ./node_modules/babel-loa ...
分类:
Web程序 时间:
2020-11-23 12:09:09
阅读次数:
11
1.勾选complete,默认装在c盘 2.在C盘建一个data文件夹,文件夹一定要在根目录下,如C:\,D:\ 3.安装完成之后,打开cmd执行以下命令: 命令行下运行 MongoDB 服务器 和 配置 MongoDB 服务 任选一个方式启动就可以。本文章是 命令行下运行 MongoDB 服务器 ...
分类:
数据库 时间:
2020-11-23 12:08:57
阅读次数:
13
1.子类 1) 定义子类 //假设父类(也叫做超类)是Employee类,用extends来表示继承 public class Manager extends Employee{ //域和方法 private double bonus; //子类的域 ... private void setBonu ...
分类:
编程语言 时间:
2020-11-23 12:08:42
阅读次数:
7
sudo gedit /etc/apt/sources.list 粘贴以下内容 deb https://repo.huaweicloud.com/ubuntu-ports/ bionic main restricted universe multiverse deb-src https://repo ...
分类:
其他好文 时间:
2020-11-23 12:08:23
阅读次数:
5
MySQL5.6之后的版本在通过客户端连接或者备份时时都会有出现如下的一个警告: Warning: Using a password on the command line interface can be insecure. 在一些脚本操作中可能会造成一些干扰,这里介绍下两种方式来避免这个输出: ...
分类:
数据库 时间:
2020-11-23 12:08:06
阅读次数:
13
这个错误是缺少权限的意思 访问这个路径需要指定的角色,代码中是这样的: 主要这里配置的是访问任意路径都需要USER角色 然后数据库角色表中必须是这样的: 带有ROLE_前缀!!! ROLE_USER!!!!!!!! 参考: https://blog.csdn.net/qq_27093097/arti ...
分类:
其他好文 时间:
2020-11-23 12:07:52
阅读次数:
7
老实来讲这课我一头雾水满脑袋问号 import numpy as np from collections import Counter counttime = 0 #统计训练语料:spam 和 ham 各自评论总数,单词频率 def seperate(filename): hamcnt = Coun ...
分类:
编程语言 时间:
2020-11-23 12:07:30
阅读次数:
7