摘要: html复习 css选择器与常用属性 id选择器 # class选择器 . 通配符选择器 * { } 常用的css属性 width height backgroundcolor font-size color 文本水平居中 text-align :center 文本行高 垂直居中 :line-hei 阅读全文
posted @ 2021-09-07 01:46 麋鹿lh 阅读(27) 评论(0) 推荐(0)
摘要: 首先进行安装axios 可以使用 yarn安装 命令如下: yarn add axios 执行get请求 axios.get('/user',{params:{ id:13} }).then(function (response) { console.log(response) }).catch(f 阅读全文
posted @ 2021-09-07 00:53 麋鹿lh 阅读(75) 评论(0) 推荐(0)
摘要: SQL server新建一个数据库登录名,建好了之后,要使用它连接登录时出现了错误 相信有不少朋友都踩过一个坑 就是自己创建了一个新的用户名,但是在连接登入时报错:无法访问数据库, 那是应为你没有授权,你可以使用sql语句创建登入名 密码 与授权 create login xxwith passwo 阅读全文
posted @ 2020-05-28 15:19 麋鹿lh 阅读(198) 评论(1) 推荐(0)