摘要:
Vue中实现video的动态src 试了网上的$refs方法发现并没有用 解决方案: 通过require方法 <div> <video :src='url' @click='change(2.mp4)'> test </video> </div> //js data() { return 阅读全文
摘要:
mapping可以理解为python中对字典的键值遍历,键是唯一的而值是可以重复的 mapping函数的构造: mapping(_KeyType => _ValueType) mapping (address => uint) public balances; 上文代码解析:mapping(键类型= 阅读全文
摘要:
图的定义 图 (Graph) 是一个二元组 G = (V(G), E(G))。其中V(G) 是非空集,称为 点集 (Vertex set),对于V中的每个元素,我们称其为 顶点 (Vertex) 或 节点 (Node),简称 点; E(G)为V(G) 各结点之间边的集合,称为 边集 (Edge se 阅读全文
摘要:
The five attributes of a complex system Hierarchic structure Relative Primitives The choice of what components in a system are primitive is relatively 阅读全文
摘要:
SCHENE instructor关系: instructor(id, name, dep_name, salary) course关系: course(course_id, title, dept_name, credits) department(dept_name, building, bud 阅读全文
摘要:
外连接 select * from student natural join takes 实际上有三种外连接 左外连接 右外连接 全外连接 视图 视图定义 create view faculty as select ID, name, dept_name from instructor cr 阅读全文
摘要:
SQL语言分为 数据定义语言(Data-Definition Languagem DDL) 数据操纵语言(Data-Manipulation Languagem DML) 完整性(integrity) 视图定义(view definition) 事务控制(transaction control) 嵌 阅读全文
摘要:
Git多人合作开发 在多人合作开发中,不可以直接修改主仓库代码! 流程图 具体流程 新建一个主仓库 开发人员将主仓库frok到自己的github仓库 clone自己仓库的repository到本地 本地开发完后push到自己的远程仓库 远程仓库向主仓库发pr 主仓库管理人员审查并合并pr 1. 点击 阅读全文
摘要:
本地Navicat无法连接服务器mysql8.0 原因: mysql未开启远程连接权限 navivat与mysql密码加密不一致,需一致加密规则 允许远程连接 use msyql; // 1.先查询用户信息 select User,authentication_string,Host from us 阅读全文
摘要:
图形介绍 图形共有两种:一种是无向图形,一是有向图形。五香图形以(V1, V2)表示边线,有线图形以<V1,V2>表示边线 图形由顶点和边所组成,以G=(V, E)来表示:其中V为所有顶点的集合,E为所有边的集合 他们的数据结构可以表示为: G1=(V1,E1), 其中 V1={a,b,c,d},E 阅读全文