上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页
摘要: 1服务端渲染 2,前后端分离 不同开发模式下的身份验证 阅读全文
posted @ 2022-11-09 01:41 文采呱呱 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 初始化一个包记录项目文件 npm init -y 建立一个MySQL包 npm i mysql 配置mysql模块 // 导入数据库模块 const mysql = require('mysql') // 配置应用数据库 const db = mysql.createPool({ host: '12 阅读全文
posted @ 2022-11-09 00:06 文采呱呱 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 步骤图 ①,安装MySQL模块到项目里 阅读全文
posted @ 2022-11-08 23:48 文采呱呱 阅读(11) 评论(0) 推荐(0) 编辑
摘要: select count(*) from users where status = 0 as:select count(*) as sb from users where status = 0select usename as sb ,password as zz from users 阅读全文
posted @ 2022-11-08 00:28 文采呱呱 阅读(372) 评论(0) 推荐(0) 编辑
摘要: -- select * from users -- order by排序 -- desc降序 -- 升序 由小到大 -- 下列两条都是升序,其中asc加不加都可以,因为他们是等价的 -- select * from users order by status -- select * from use 阅读全文
posted @ 2022-11-08 00:24 文采呱呱 阅读(263) 评论(0) 推荐(0) 编辑
摘要: where语句的运算符 -- where子句的演示 -- 根据条件查询 -- select *from users where id >= 2 -- select * from users where id = 1 -- select * from users where usename !='李四 阅读全文
posted @ 2022-11-08 00:08 文采呱呱 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 增:通过insert into查询,列与值要一一对应通过insert into查询 insert into 表名(列,列) values ('值','值') insert into users(usename,password) values ('tony','123456') -- 删:delet 阅读全文
posted @ 2022-11-07 23:53 文采呱呱 阅读(19) 评论(0) 推荐(0) 编辑
摘要: <button bindtap='showRule' style="width:65vw" class="receiveFile">点击弹窗模态框</button> <!--遮罩层--> <view class="ruleZhezhao {{isRuleTrue?'isRuleShow':'isRu 阅读全文
posted @ 2022-11-04 18:18 文采呱呱 阅读(231) 评论(0) 推荐(0) 编辑
摘要: MySQL的数据库下载地址 https://downloads.mysql.com/archives/installer/ 安装步骤: 点击execute检查依赖项 一直点next到这里的时候不用更改啥,也是点next 这里选择第二项 到这里之后。设置密码,然后点next 点击下一步自动配置 点击e 阅读全文
posted @ 2022-11-03 15:37 文采呱呱 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 概念:浏览器端通过<script>标签的src属性,请求服务器上的数据,同时,服务器返回一个函数的调用。这种请求数据 的方式叫做SONP。特点:①JSONP不属于真正的Ajax请求,因为它没有使用XMLHttpRequest这个对象。②JSONP仅支持GET请求,不支持POST、PUT、DELETE 阅读全文
posted @ 2022-11-03 14:19 文采呱呱 阅读(63) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 25 下一页