跨域带cookies
前端设置: axios({ withCredentials: true, // ++ 新增 method: "get", url: "http://localhost:8003/anotherService", }).then((res) => { console.log(res); }); 后端设置: app.all("*", (req, res, next) …
524 2022-03-31 去围观'node' is not recognized as an internal or an external command
在path环境变量值添加 C:\Program Files\nodejs https://stackoverflow.com/questions/23412938/node-is-not-recognized-as-an-internal-or-an-external-command-operable-program
618 2022-03-30 去围观ffmpeg合并多个ts视频文件并输出mp4 、且mp4转mp3
FFmpeg合并多个ts视频文件 方法一, 新建file.txt文档 file 'F:\Release\StreamMediaServer\html\hd\34020000001310000701\34020000001310000701_live-16.ts' file 'F:\Release\StreamMediaServer\html\hd\34020000001310000701\34020000001310000701_live-17.…
765 2022-03-19 去围观element ui 2.x版本icon图标会偶现乱码
解决方法: 卸载npm uninstall sass -D //如果卸载失败可以删除整个node_modules,在去手工删除package.json里面的sass 安装npm install node-sass@4.14.1 -D //node v10.15.2 npm i node-sass@4.14.1 --sass_binary_site=https://npm.taobao.org/mirr…
659 2022-03-14 去围观Node Sass version 7.0.1 is incompatible with ^4.0.0.
版本不匹配 node:v10.15.2 卸载当前版本sass: npm uninstall node-sass 安装指定版本sass: npm install node-sass@4.14.1 或者 npm i node-sass@4.14.1 --sass_binary_site=https://npm.taobao.org/mirrors/node-sass &nbs…
929 2022-03-14 去围观