码迷,mamicode.com
首页 > 2020年11月23日 > 全部分享
企业微信小程序 导购快捷联系用户 wx.qy.openUserProfile 的使用示例
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
NO.A.0001——nginx常见报错处理
问题一: [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
String和StringBuffer、StringBuilder的区别
a、可变性:String类中使用字符数组保存字符串,private final char value[],所以string对象是不可变的。StringBuilder与StringBuffer都继承自AbstractStringBuilder类,在AbstractStringBuilder中也是使用字 ...
分类:其他好文   时间:2020-11-23 12:11:07    阅读次数:5
django解决跨域问题
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
封神台靶场:萌新也能找CMS突破
靶场地址 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
js+php分片上传大文件方案
第一点: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?
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站UP主的所有视频链接及详细信息
使用 Python 获取B站(Bilibili.com)某一用户(根据用户uid)所上传的所有视频链接及其相关信息。 ...
分类:编程语言   时间:2020-11-23 12:09:26    阅读次数:6
Module not found: Error: Can't resolve '../../../public/ueditor/lang/zh-cn/zh-cn.js'
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
安装,连接mongodb数据库注意事项
1.勾选complete,默认装在c盘 2.在C盘建一个data文件夹,文件夹一定要在根目录下,如C:\,D:\ 3.安装完成之后,打开cmd执行以下命令: 命令行下运行 MongoDB 服务器 和 配置 MongoDB 服务 任选一个方式启动就可以。本文章是 命令行下运行 MongoDB 服务器  ...
分类:数据库   时间:2020-11-23 12:08:57    阅读次数:13
Java基础 之三 继承
1.子类 1) 定义子类 //假设父类(也叫做超类)是Employee类,用extends来表示继承 public class Manager extends Employee{ //域和方法 private double bonus; //子类的域 ... private void setBonu ...
分类:编程语言   时间:2020-11-23 12:08:42    阅读次数:7
arm源中国源更新替换(亲测有效)
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
消除MySQL连接时的Warning:Using a password on the command line interface can be insecure.
MySQL5.6之后的版本在通过客户端连接或者备份时时都会有出现如下的一个警告: Warning: Using a password on the command line interface can be insecure. 在一些脚本操作中可能会造成一些干扰,这里介绍下两种方式来避免这个输出: ...
分类:数据库   时间:2020-11-23 12:08:06    阅读次数:13
There was an unexpected error (type=Forbidden, status=403). Forbidden
这个错误是缺少权限的意思 访问这个路径需要指定的角色,代码中是这样的: 主要这里配置的是访问任意路径都需要USER角色 然后数据库角色表中必须是这样的: 带有ROLE_前缀!!! ROLE_USER!!!!!!!! 参考: https://blog.csdn.net/qq_27093097/arti ...
分类:其他好文   时间:2020-11-23 12:07:52    阅读次数:7
NLP自然语言处理
老实来讲这课我一头雾水满脑袋问号 import numpy as np from collections import Counter counttime = 0 #统计训练语料:spam 和 ham 各自评论总数,单词频率 def seperate(filename): hamcnt = Coun ...
分类:编程语言   时间:2020-11-23 12:07:30    阅读次数:7
199条   上一页 1 ... 5 6 7 8 9 10 11 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!