摘要: 1.单选框 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--view层,模板--> <div id="app"> 性别: <input typ 阅读全文
posted @ 2022-01-22 17:03 バカなの 阅读(2220) 评论(0) 推荐(0) 编辑
摘要: 1.v-bind绑定元素特性 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--view层,模板--> <div id="app"> <!-- 阅读全文
posted @ 2022-01-22 15:47 バカなの 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 在导入js或者样式表的时候: 一个点:表示当前目录。如:import './assets/css/main.css' 两个点:表示当前目录的上级目录。如:import { BASE_URL } from '../api/config' 阅读全文
posted @ 2022-01-05 14:07 バカなの 阅读(1365) 评论(0) 推荐(0) 编辑
摘要: 报错内容1: npm ERR! code 1 npm ERR! path /Users/.../node_modules/chromedriver npm ERR! command failed npm ERR! command sh -c node install.js npm ERR! Only 阅读全文
posted @ 2021-12-31 17:33 バカなの 阅读(6429) 评论(0) 推荐(0) 编辑
摘要: 用很多种办法始终不行,总是出现: ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the righ 阅读全文
posted @ 2021-12-31 17:24 バカなの 阅读(46) 评论(0) 推荐(0) 编辑
摘要: html注释快捷键:control+shift+/或者command+option+/或者command+/ 阅读全文
posted @ 2021-12-26 20:10 バカなの 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 一、在school数据库中建立四个表: student/teacher/course/score mysql> create table student( -> sno varchar(20) primary key, -> sname varchar(20)not null, -> ssex va 阅读全文
posted @ 2021-12-11 15:12 バカなの 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 主键不能为空(NULL)、不能重复!! 唯一约束不能重复,但可以为空。 1.单主键约束 primary key mysql> create table user1( -> id int primary key, -> name varchar(20) -> ); Query OK, 0 rows a 阅读全文
posted @ 2021-12-09 17:32 バカなの 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 增:insert 删:delete 改:update 查:select 1.创建一个数据库 mysql> create database test; Query OK, 1 row affected (0.00 sec) 2.显示当前数据库内容 mysql> show databases; + + 阅读全文
posted @ 2021-12-09 15:16 バカなの 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 安装步骤 1.从MySQL官网上下载安装包 下载地址:https://dev.mysql.com/downloads/mysql/ M1用户选择首项即可: 2.下载好后直接双击安装包,默认安装路径 点击允许 一路点继续最后安装成功,默认装在Macintosh HD盘,密码选择第一项强密码,输入的就是 阅读全文
posted @ 2021-12-07 14:26 バカなの 阅读(1373) 评论(0) 推荐(1) 编辑