# 连接数据库
mysql -uroot -p'密码'
# 新建数据库
create database if not exists数据库名;
# 新建用户
create user '用户名'@'localhost' identified by '密码'
# 授予权限
grant all on ...
阅读全文
释义概念释义IaaSInfrastructure as a Service,即基础设施即服务PaaSPlatform as a Service,即平台及服务SaaSSoftware as a Service,即软件即服务FaaSFunction as a Service,即函数即服务BaaSB...
阅读全文
String.fromCharCode函数用于从Unicode字符值中返回一个字符串。String.fromCharCode函数属于静态函数,只能通过全局String对象进行调用,不能通过String对象的实例进行调用。浏览器支持情况 语法String.fromCharCode([code1[...
阅读全文
Uint8Array是什么Uint8Array 数组类型表示一个8位无符号整形数组,创建时内容被初始化为0。创建完成后可以以对象的方式或使用数组下标索引的方式操作数组中的元素。Uint8Array数组类型转化为16进制function uint8Array(uint8Array) {
re...
阅读全文
一、根据浏览器窗口大小变化var widthThreshold = window.outerWidth - window.innerWidth > threshold;
var heightThreshold = window.outerHeight - window.innerHeig...
阅读全文
- « 前一页
- 1
- ...
- 11
- 12
- 13
- 14
- 15
- 16
- 后一页 »