上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 87 下一页
摘要: Windows下Nginx的常用命令 在Windows下使用Nginx,我们需要掌握一些基本的操作命令,比如:启动、停止Nginx服务,重新载入Nginx等,下面我就进行一些简单的介绍。 1、启动 注意:使用后台启动必须配置daemon on; start nginx【后台启动】 nginx.exe 阅读全文
posted @ 2023-12-01 16:14 槑孒 阅读(2176) 评论(0) 推荐(0)
摘要: 一、vite的插件推荐 rollup-plugin-visualizer 打包分析插件 安装 npm install rollup-plugin-visualizer -D vite配置 // vite.config.js import { defineConfig } from 'vite' im 阅读全文
posted @ 2023-11-30 22:27 槑孒 阅读(2505) 评论(2) 推荐(3)
摘要: 什么是unocss? unocss是一个即时的原子CSS引擎,它可以让你用简短的类名来控制元素的样式,而不需要写复杂的CSS代码。 Unocss: Guide 用Vite安装和配置步骤:UnoCSS Vite Plugin 互动性文档:https://unocss.dev/interactive/( 阅读全文
posted @ 2023-11-30 00:42 槑孒 阅读(2038) 评论(0) 推荐(0)
摘要: <script setup> import MapTimeLegend from "./components/MapTimeLegend" </script> [plugin:vite:import-analysis] Failed to resolve import "./components/M 阅读全文
posted @ 2023-11-29 01:10 槑孒 阅读(1175) 评论(0) 推荐(0)
摘要: import requests import json # 设置缓存时间 data = json.dumps({ "coverage": { "metadata": { "entry": [ { "@key": "cacheAgeMax", "$": "1800" }, { "@key": "cac 阅读全文
posted @ 2023-11-28 22:36 槑孒 阅读(311) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/Mr-Kahn/p/12850742.html https://www.osgeo.cn/geoserver-user-manual/rest/index.html#rest python示例 # xml方式 auth = ('admin', 'geo 阅读全文
posted @ 2023-11-28 17:26 槑孒 阅读(159) 评论(0) 推荐(0)
摘要: 解决方案代码如下: const debounce = (fn, delay) => { let timer = null; return function () { let context = this; let args = arguments; clearTimeout(timer); time 阅读全文
posted @ 2023-11-28 17:12 槑孒 阅读(226) 评论(0) 推荐(1)
摘要: import paramiko import os # SSH 连接信息 hostname = "your_remote_host" port = 22 username = "your_username" password = "your_password" # 远程目录路径 remote_dir 阅读全文
posted @ 2023-11-28 15:39 槑孒 阅读(270) 评论(0) 推荐(0)
摘要: from geoserver.catalog import Catalog cat = Catalog("http://localhost:8080/geoserver/rest/", username="admin", password="geoserver") data_url = "D:/GI 阅读全文
posted @ 2023-11-28 00:08 槑孒 阅读(736) 评论(0) 推荐(0)
摘要: /geoserver/bin/startup.sh修改这个启动文件的配置 # Guard against misconfigured JAVA_HOME if [ -n "${JAVA_HOME:-}" ] && [ ! -x "${JAVA_HOME}/bin/java" ]; then echo 阅读全文
posted @ 2023-11-27 15:09 槑孒 阅读(427) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 87 下一页