会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
北风几吹夏
阅读是一座随身携带的避难所。——毛姆
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
21
22
23
24
25
26
27
28
29
···
87
下一页
2023年12月1日
Windows下Nginx的重用命令及如何配置后台启动
摘要: Windows下Nginx的常用命令 在Windows下使用Nginx,我们需要掌握一些基本的操作命令,比如:启动、停止Nginx服务,重新载入Nginx等,下面我就进行一些简单的介绍。 1、启动 注意:使用后台启动必须配置daemon on; start nginx【后台启动】 nginx.exe
阅读全文
posted @ 2023-12-01 16:14 槑孒
阅读(2176)
评论(0)
推荐(0)
2023年11月30日
Vite 打包配置说明及插件使用
摘要: 一、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)
Vue3 + Vite中使用unocss
摘要: 什么是unocss? unocss是一个即时的原子CSS引擎,它可以让你用简短的类名来控制元素的样式,而不需要写复杂的CSS代码。 Unocss: Guide 用Vite安装和配置步骤:UnoCSS Vite Plugin 互动性文档:https://unocss.dev/interactive/(
阅读全文
posted @ 2023-11-30 00:42 槑孒
阅读(2038)
评论(0)
推荐(0)
2023年11月29日
使用vue3和vite导入index.vue文件而不指定文件名
摘要: <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)
2023年11月28日
GeoServer API设置WMS服务图层的缓存信息
摘要: import requests import json # 设置缓存时间 data = json.dumps({ "coverage": { "metadata": { "entry": [ { "@key": "cacheAgeMax", "$": "1800" }, { "@key": "cac
阅读全文
posted @ 2023-11-28 22:36 槑孒
阅读(311)
评论(0)
推荐(0)
geoserver API设置图层样式
摘要: 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)
element-plus 报错 ResizeObserver loop limit exceeded 解决
摘要: 解决方案代码如下: 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)
Python获取远程指定目录下所有文件的绝对路径
摘要: 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)
GeoServer自动发布tif格式的地图服务
摘要: 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)
2023年11月27日
geoserver指定JAVA_HOME路径
摘要: /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
下一页
公告