- 博客(3)
- 收藏
- 关注
原创 jquery php mysql数据库的题目
1.用PDO连接mysql库中的user库用户名是root密码是123456以下格式正确的是(C) A.new PDO("mysql:dbname=test;host=localhost;charset=utf8",'root','123456') B.new PDO("mysql=host:localhost;dbname:test;charset:utf-8",'root','123456') C.new PDO("mysql:host=localhost;dbname=test;charset=
2022-04-25 18:34:20
295
原创 Vue后台管理系统页面每次点击跳转位置回恢复在顶部
因后台侧边栏的菜单过长,导致点击底下的菜单,内容显示下面的内容 在router里的index.js文件最下面配置一下 router.beforeEach((to, from, next) => { document.body.scrollTop = 0 // firefox document.documentElement.scrollTop = 0 next() }) ...
2022-04-25 18:22:43
613
原创 处理数组某个对象里面的字段对象的值相加求和
数据格式 [ id:1, name:'111', hourValue:{1:"1",2:'2'} ] calcSum(item) { const value = Object.values(item) const sum = value.map((v) => +v).reduce((pre, cur) => pre + cur, 0) return sum.toFixed(2) },
2022-04-25 18:11:11
680
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人