<template> <view class="login"> <view class="content-wrapper"> <view class="title"> <h1>欢迎使用考试系统</h1> </view> <view class="login-form"> <view class="l ...
分类:
移动开发 时间:
2021-01-11 11:21:48
阅读次数:
0
背景:gitee上下载的开源vue项目,本地部署。执行【npm install】时,报错Error: Can't find Python executable "python", you can set the PYTHON env variable。 解决: 网上提供的一个解决办法:管理员身份打开 ...
分类:
编程语言 时间:
2021-01-11 10:40:56
阅读次数:
0
RsaBaseParameters using System.Security.Cryptography; using System.Text; namespace Benchint.Util.Rsa.Models { /// <summary> /// RSA基础参数 /// </summary> ...
分类:
其他好文 时间:
2021-01-11 10:35:30
阅读次数:
0
1、//配置分组主机 vim /etc/ansible/hosts 内容:# 方法一 主机+端口+密码 [webservers] 192.168.16.1 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass="123456" # 方法 ...
分类:
其他好文 时间:
2021-01-08 11:23:03
阅读次数:
0
1.1 SpringMVC 概述 1) Spring 为展现层提供的基于 MVC 设计理念的优秀的 Web 框架,是目前最主流的MVC 框架之一 2)Spring3.0 后全面超越 Struts2,成为最优秀的 MVC 框架。 3)Spring MVC 通过一套 MVC 注解,让 POJO 成为处理 ...
分类:
编程语言 时间:
2021-01-08 11:16:46
阅读次数:
0
方法一: import os import cv2 as cv import numpy as np # 读取yuv420p的一帧文件,并转化为png图片 if __name__ == '__main__': filepath = 'one_frame_of_highway.yuv' binfile ...
分类:
编程语言 时间:
2021-01-07 12:44:52
阅读次数:
0
React的生命周期从广义上分为三个阶段:挂载、渲染、卸载 挂载卸载过程 1.1.constructor() 1.2.componentWillMount() 1.3.componentDidMount() 1.4.componentWillUnmount () 更新过程 2.1. componen ...
分类:
其他好文 时间:
2021-01-07 12:35:36
阅读次数:
0
常见命令 插件管理 开启某个插件:rabbitmq-plugins enable xxx 关闭某个插件:rabbitmq-plugins disable xxx 注意:重启服务器后生效。 用户管理 新建用户:rabbitmqctl add_user xxxpwd 删除用户: rabbitmqctl ...
分类:
其他好文 时间:
2021-01-07 12:24:14
阅读次数:
0
上周内容回顾 库的增删改查 show databases; show create databese db; create database db1; alter datebase charset='gbk' drop database db1; 表的增删改查 # 操作表之前一定要明确库 use d ...
分类:
数据库 时间:
2021-01-07 12:14:11
阅读次数:
0
一、相关属性知识 1.__bases__: 元组,元素是继承的类 ①含义:类名.__bases__ 可以得到这个类的父类是谁 ②输出结果:父类作为元素存放在元组中(该类继承了哪些父类) # __bases__: 元组,元素是继承的类 class A(object): pass class B(obj ...
分类:
其他好文 时间:
2021-01-07 12:12:12
阅读次数:
0