摘要:
.item { --n: 8; background-color: red; width: 50px; height: 50px; margin: 10px calc((100% - var(--n)*50px)/var(--n)/2); } #container { width: 600px; h 阅读全文
摘要:
nginx.conf http { server { listen 80; server_name localhost; location ^~ /api { root html; index index.html; proxy_pass http://localhost:5000/api;#前面加 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
摘要:
//cluster模块子进程内置共享端口 const express = require('express') const cluster = require('cluster') if (cluster.isMaster) { //处理主进程逻辑 console.log(`主进程 ${proces 阅读全文
摘要:
Access-Control-Allow-Origin 允许跨域访问 Access-Control-Allow-Headers 向浏览器发送预检请求,询问是否支持跨域的自定义 header 字段 Access-Control-Allow-Methods 询问是否支持跨域的请求方法 Access-Co 阅读全文
摘要:
重定向 阅读全文
摘要:
1 第二种和第三种都需要改配置文件(需要重启服务) 2 3 阅读全文
摘要:
🐊 😭 😂 😄 😍 😛 🤔 🤐 😴 🤧 🤠 😎 😞 😠 💩 😸 🙈 ❤ 💋 😄 😀 😃 😄 😁 😆 😅 🤣 😂 🙂 🙃 🫠 阅读全文
摘要:
vue2 const fn = require.context('./views', true, /.vue$/) const paths = fn.keys()// 说有views下面.vue结尾文件,路径字符串,数组形式 路由懒加载import参数不能是字符串,可以是模板字符串,半写死 vue3 阅读全文
摘要:
vue2 package.json "scripts": { "serve": "vue-cli-service serve --host 0.0.0.0 --port 5173", "build": "vue-cli-service build" }, vue3 vite.config.json 阅读全文