第一步:安装证书 .cer文件双击 第二步:管理员权限打开powershell Add-AppPackage -Path .\BiliBili.UWP_3.9.95.0_x86_x64.appxbundle ...
分类:
移动开发 时间:
2020-06-20 16:58:11
阅读次数:
455
一共三种方式,分别是系统默认、自定义、webjars 一、使用系统默认方式存放静态资源 1.我们都只知道springboot是通过自动配置来实现的,其中静态资源的位置,他也有自己定义,分别是: classpath:/static/ classpath:/public/ classpath:/reso ...
分类:
编程语言 时间:
2020-06-20 16:51:50
阅读次数:
63
import os,os.path directory = input('请输入目录或者文件地址:') def getSzie(path): global size size = 0 if os.path.isfile(path): size1 = os.path.getsize(path) siz ...
分类:
其他好文 时间:
2020-06-20 16:31:27
阅读次数:
57
path = r"C:\Users\wuhao\.keras\datasets\mnist.npz" def load_data(path): with np.load(path) as f: x_train, y_train = f['x_train'], f['y_train'] x_test, ...
分类:
其他好文 时间:
2020-06-20 16:12:54
阅读次数:
89
1.account_log 用户账目日志表 字段类型Null/默认注释 log_id mediumint(8) 否 / 自增 ID 号 user_id mediumint(8) 否 / 用户登录后保存在session中的id号,跟users表中user_id对应 user_money decimal ...
分类:
数据库 时间:
2020-06-20 16:00:16
阅读次数:
66
1.手机号码唯一性验证 """ 接口访问地址: /user/mobile/(?P<mobile>1[3-9]\d{9})/ """ from rest_framework import status class MobileAPIView(APIView): def get(self,request ...
分类:
移动开发 时间:
2020-06-20 13:40:11
阅读次数:
78
查看Chrome版本号: chrome://settings/help 下载相应版本chromedriver http://npm.taobao.org/mirrors/chromedriver/ 解压后放入C:\Python27目录下(我之前已经将其设置为环境变量) ...
分类:
其他好文 时间:
2020-06-20 11:34:43
阅读次数:
64
1 # -*- coding: utf-8 -*- 2 """ 3 Created on Mon Nov 25 17:07:26 2019 4 5 @author: user 6 """ 7 8 import pandas as pd 9 from pathlib import Path 10 im ...
分类:
编程语言 时间:
2020-06-20 11:30:33
阅读次数:
56
pip list显示selenium版本 selenium 3.141.0 下载相应版本IEDriverServer http://npm.taobao.org/mirrors/selenium/ 解压后放入C:\Python27目录下(我之前已经将其设置为环境变量) 我这里选择的是:http:// ...
分类:
其他好文 时间:
2020-06-20 11:03:27
阅读次数:
50
echo "app_path ".Env::get('app_path')."</br>"; echo "root_path ".Env::get('root_path')."</br>"; echo "think_path ".Env::get('think_path')."</br>"; ech ...
分类:
其他好文 时间:
2020-06-20 00:55:05
阅读次数:
116