10 2023 档案

摘要:目录文件夹相关创建文件夹进入某一文件夹将当前目录下的资源详细情况都列出来将当前目录下的资源(包括隐藏资源)详细情况都列出来显示当前工作区目录null初始化设置签名设置全局签名查看全局签名设置工作区签名查看工作区签名暂存区相关(stage)上传文件至暂存区查看暂存区文件删除暂存区内的文件远程库相关删除 阅读全文
posted @ 2023-10-31 23:52 Syinho 阅读(6) 评论(0) 推荐(0) 编辑
摘要:安装 npm install province-city-china --save-dev 使用 const { data, province, city, area, town } = require('province-city-china/data') data - 总数据(省/地/县/乡) 阅读全文
posted @ 2023-10-30 23:26 Syinho 阅读(150) 评论(0) 推荐(0) 编辑
摘要:路由构建 以acme.com/dashedboard/settings路由为例 第一个/代表app目录 /dashboard代表app/dashboard目录 /dashboard/settings代表app/dashboard/settings目录 访问acme.com/会自动访问app/page 阅读全文
posted @ 2023-10-25 00:12 Syinho 阅读(69) 评论(0) 推荐(0) 编辑
摘要:express文档中有一个req.cookiesAPI,但是直接使用这个API的话是无法获取到任何cookie数据的 const app = express() app.listen(5014, err => {}) app.get('/test1', (req, res) => { console 阅读全文
posted @ 2023-10-24 01:26 Syinho 阅读(88) 评论(0) 推荐(0) 编辑
摘要:通过document.styleSheets可以获取到一个StyleSheetList接口 const aStyleList = document.styleSheets console.log(aStyleList.constructor.name) // StyleSheetList conso 阅读全文
posted @ 2023-10-22 23:22 Syinho 阅读(147) 评论(0) 推荐(0) 编辑
摘要:在项目中的请求设置了withCredentials:true之后, 后端在设置Access-Control-Allow-Origin:*的情况下浏览器依然报跨域错误 在https://blog.csdn.net/HermitSun/article/details/100797223这篇博文里了解到 阅读全文
posted @ 2023-10-20 13:47 Syinho 阅读(930) 评论(0) 推荐(0) 编辑
摘要:在今天的开发中遇到这样的需求:通过接口获取到文章数据, 文章数据是html字符串, 使用innerHTML将其注入到某一个元素中, 文章中的某些图片因为服务器端的图片失效等原因无法访问,需要为其添加一个onerror处理事件, 替换调损坏的图片, 替换为一个显示加载失败的图 function han 阅读全文
posted @ 2023-10-20 00:55 Syinho 阅读(69) 评论(0) 推荐(0) 编辑
摘要:html <div id="modelContainer" class="init"> <div class="mask"></div> <div class="model_content"> <div class="attention_container"> <div class="dot"> < 阅读全文
posted @ 2023-10-10 22:46 Syinho 阅读(147) 评论(0) 推荐(0) 编辑
摘要:<link rel="stylesheet" href="https://at.alicdn.com/t/c/font_1826665_p96ije5uc2f.css" crossorigin> var linkStyle = document.getElementsByTagName("link" 阅读全文
posted @ 2023-10-09 22:43 Syinho 阅读(27) 评论(0) 推荐(0) 编辑
摘要:const { resolve } = require('path') const HtmlWebpackPlugin = require('html-webpack-plugin') const MiniCssExtractPlugin = require('mini-css-extract-pl 阅读全文
posted @ 2023-10-09 01:54 Syinho 阅读(144) 评论(0) 推荐(0) 编辑
摘要:ajax请求默认是不会携带同源cookie的, 只有当设置了 credentials 时才会带上与请求同域的cookie, 并且服务端需要设置响应头 Access-Control-Allow-Credentials: true withCredentials: true 携带了这个属性的axios才 阅读全文
posted @ 2023-10-06 16:26 Syinho 阅读(266) 评论(0) 推荐(0) 编辑
摘要:在使用postman测试接口时, postman会在发送请求时自动携带默认浏览器中同域名的cookie. 管理postman的cookie 点击上图红框中的cookies按钮, 就可以在打开的页面中看到域名以及所携带的cookie 可以在headers中手动添加cookie, 也可以在cookie管 阅读全文
posted @ 2023-10-06 11:22 Syinho 阅读(117) 评论(0) 推荐(0) 编辑
摘要:-P, --save-prod: 包将出现在你的 dependencies 中。 这是默认值,除非存在 -D 或 -O。 -D, --save-dev: 包将出现在你的 devDependencies 中。 package.json中dependencies与devDependencies区别 de 阅读全文
posted @ 2023-10-06 01:47 Syinho 阅读(73) 评论(0) 推荐(0) 编辑
摘要:在axios的配置中加入progressEvent // 1.获取基本数据(随笔数据, 文章数据, 评论数据, 阅读量) export const reqGetArticleBasicData = () => instance.get('/ajax/blogStats', { onDownloadP 阅读全文
posted @ 2023-10-04 23:00 Syinho 阅读(279) 评论(0) 推荐(0) 编辑
摘要:安装 npm install cors 简单使用(允许所有跨域请求) var express = require('express') var cors = require('cors') var app = express() app.use(cors()) app.get('/products/ 阅读全文
posted @ 2023-10-03 23:07 Syinho 阅读(116) 评论(0) 推荐(0) 编辑
摘要:store目录 |-- store | |-- actions.js | |-- getters.js | |-- index.js | |-- mutations.js | |-- state.js | |-- module | |-- article.js | |-- index.js | |- 阅读全文
posted @ 2023-10-02 00:39 Syinho 阅读(11) 评论(0) 推荐(0) 编辑