config server vite ts

Windows Server 环境下 Mysql-8.0.32-winx64 升级至 Mysql-8.2.0-winx64版本

Mysql-8.0.32-winx64 升级至 Mysql-8.2.0-winx64版本 摘要: 环境:Windows Server 2019 Datacenter Mysql 8.0.32 升级至 Mysql 8.2.0 操作记录,跨域服务器访问; 准备工作:升级新版本、备份旧版本数据 zip压缩 ......
Mysql winx Windows 版本 环境

关于前端的vue3框架遇到的一些问题.前后端分页和js,ts进行编写时的区别

分页有两种形式,一种是前端进行分页,一种是后端进行分页 前端分页: 1. 在普通js写法中,需要有默认函数,在函数内进行编写功能实现比如以下代码: export default { data() { return { tableData: [], page: 1, limit: 10, total: ......
前端 框架 问题 vue3 vue

electron-vite 安装, 打包下载资源失败,设置国内镜像

由于electron默认打包会从github上下载相关二进制包,众所周知,国内GitHub访问是相当慢的,所以经常会出现下载失败导致打包不成功,这时我们就需要配置国内的镜像源,以解决从GitHub下载慢甚至无法下载的问题。 修改npm配置文件(没有就创建): npm的配置文件为用户根目录下的:~/. ......
electron-vite electron 镜像 资源 vite

Windows Server 2012 R2 Standard 版英特尔网络适配器驱动程序

Windows Server 2012 R2 Standard 版安装好以后发现没有网络,网上搜了很多都是不行,后来找到了方法,解决你方法如下: Windows Server 2012 R2 Standard 版英特尔网络适配器驱动程序 1、以太网驱动,下载解压安装即可 Wired_driver_2 ......

如何在一个解决方案中使用EFCore 匹配 oracle和sql server 数据库(AI)

来自你的消息: 如何在一个解决方案中使用EFCore 匹配 oracle和sql server 数据库?请给出详细示例并可以运行的! 来自WeTab AI的消息: 要在一个解决方案中使用EFCore 匹配 Oracle和SQL Server数据库,需要做以下步骤: 安装 EF Core 相应的数据库 ......
解决方案 数据库 方案 数据 EFCore

SQL Server数据库加密解密使用案例

1 --创建数据库主秘钥 2 2 CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'pwd' 3 3 ==> pwd是用户自己设置的密码 4 4 5 5 --创建证书 6 6 CREATE CERTIFICATE TestCertName WITH SUBJEC ......
加密解密 案例 数据库 数据 Server

ubuntu 18.04.6 编译内核kernel提示 Can't find default configuration "arch/x86/configs/socfpga_deconfig"!

输入make socfpga_defconfig 的时候提示: ubuntu 18.04.6 编译内核kernel提示 Can't find default configuration "arch/x86/configs/socfpga_deconfig"! 解决办法: export ARCH=ar ......

SQL Server CONCAT()函数简介

使用CONCAT()函数可将两个或多个字符串连接成一个字符串,语法如下: CONCAT ( input_string1, input_string2 [, input_stringN ] ); 可以有多个参数,连接多个字符串,最多255个输入字符串并将它们连接成一个字符串。 它至少需要两个输入字符串 ......
函数 简介 CONCAT Server SQL

vite启动后提示:Network: use --host to expose,且无法通过网络IP访问服务

![](https://img2024.cnblogs.com/blog/2523048/202401/2523048-20240109134209430-272421677.png) 原因: 当 局域网 中另一台设备需要访问该服务时,必须通过本机 IP + 端口 访问。 尝试访问后,发现找不到这个 ......
Network expose 网络 vite host

SQL Server 2022 基于 Docker 部署

1、Docker、Docker-Compose安装 https://www.cnblogs.com/a120608yby/p/9883175.html https://www.cnblogs.com/a120608yby/p/14582853.html 2、基于Docker-Compose部署SQL ......
Docker Server 2022 SQL

windows server 启动和停止脚本

停止指定端口: set port=8800 for /f "tokens=1-5" %%i in ('netstat -ano^|findstr ":%port%"') do ( echo kill the process %%m who use the port taskkill /pid %%m ......
脚本 windows server

SQL Server取视图和视图的字段

SELECT v.name AS ViewName, c.name AS ColumnName FROM sys.views v INNER JOIN sys.columns c ON v.object_id = c.object_id WHERE v.name = 'YourViewName' S ......
视图 字段 Server SQL

gige_ip_config.py

https://github.com/basler/pypylon/blob/master/samples/gige_ip_config.py # This sample demonstrates how to use the methods RestartIpConfiguration,# Bro ......
gige_ip_config config gige ip py

seata 1.8.0 can not get cluster name in registry config 'service.vgroupMapping.default_tx_group', please make sure registry config correct

* [调式源码解决 seata 报错 can not get cluster name 问题 - 掘金](https://juejin.cn/post/7203377276557885498) seata: enabled: true application-id: ${spring.applica ......

国产Geoscene Server 4.0编译SOE总结

背景:公司一直使用Arcgis Server 10.1、Visual Studio 2010开发SOE功能,随着国产化软件发展大趋势,SOE中的各种分析功能,需要升级到Geoscene Server环境下。 环境:Visual Studio 2022【官网下载】 GeoScene_Server_Wi ......
Geoscene 国产 Server 4.0 SOE

seata-server-1.8.0 | Could not resolve placeholder 'console.user.username' in value "${console.user.username}"  | "${seata.security.secretKey}"

PS D:\gitrepo\seata-server-1.8.0\seata> * [Seata1.6.1启动报错:console.user.username\_seata could not resolve placeholder 'console.user.-CSDN博客](https://bl ......
quot username console seata user

SQL Server Profiler的trc文件生成阻止

很奇葩,sqlserver自动生成trc文件,每分钟一个,重启服务器也没用。 解决思路: 查询现在正在跑的trace进程 select * from sys.fn_trace_getinfo(0); 关闭C2审计功能 EXEC sp_configure 'c2 audit mode', '0'; 重 ......
Profiler 文件 Server SQL trc

vite创建vue3项目

初始化项目 pnpm :pnpm create vite 输入项目名称,选择前端框架,上下键选择,确定选择可直接回车进行下一项选择 选择类型,我这里选择的是tyscript类型,按下回车后便创建成功 进入cd 项目名称进入项目目录,再如果pnpm install 安装项目所需依赖 依赖安装成功后 直 ......
项目 vite vue3 vue

docker部署企业wiki----atlassian/confluence-server:7.8

一、部署 下载镜像: docker pull atlassian/confluence-server:7.8 运行镜像: docker run -d --name confluence -p 8090:8090 --user root:root atlassian/confluence-server ......

鸿蒙开发 ERROR: Failed to find the incremental input file: C:\Users\admin\.ohos\config\auto_debug_MyApplication2_com.example.myapplication2_2850086000448618441.cer.

如图 我把项目拷贝到另一台机器报的错误,发现是签名的问题, 修改签名 操作如下: DevEco Studio 点击File ——》Project Structure——》Project ——》Signing Configs 选择 Automatically generate signature 自动 ......

uni-app+vue3+ts项目搭建完整流程

项目代码同步更新至码云 uni-vue3-ts-template 开发前准备 利用 uni-app 开发,有两种方法: 通过 HBuilderX 创建(需安装 HBuilderX 编辑器) 通过命令行创建(需安装 NodeJS 环境),推荐使用 vscode 编辑器 这里我们使用第2种方法,这两种方 ......
流程 uni-app 项目 vue3 uni

webservices设置web.config供远程调用

在网站的解决方案的下方找到web.config <system.web> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> <system.web> 2 ......
webservices config web

Dynamics 365 导入Excel报错:Server was unable to process request.

Dynamics 365 导入Excel报错:Server was unable to process request. F12查看调用,发现是调用GetImportMapXml报错,于是到高级设置-数据管理-导入去试试,提示字段Industry未找到,后来找一下字段Industry,居然又3个,一 ......
Dynamics process request Server unable

Golang——安装git工具失败,Failed to connect to github.com port 443 after 21078 ms: Couldn't connect to server

Golang——Failed to connect to github.com port 443:Timed out 解决方案: 1、首先使用浏览器确认包是否可正常访问到 2、查看当前git是否设置了其他代理或指定的地址,由于该仓库地址下没有导致。 <code>-- 查看是否设置 git confi ......
connect to 工具 Golang Failed

windows server 直接运行 部署.NET webapi,以及IIS部署vue项目

参考链接: windows server 开启IIS: https://www.cnblogs.com/yaopengfei/p/7199550.html IIS部署vue: https://juejin.cn/post/7171745871946596383 .NET 6.0 部署: https: ......
windows 项目 server webapi NET

为什么sql server在1/2时返回0?

原文链接:http://cn.voidcc.com/question/p-ysebrehb-rq.html select cast(1/2 as decimal(9,2)) 也返回0 原因: 整数除法 select 1/2 -- 0 浮法分裂(至少有一个参数必须是浮/十进制): select 1/2 ......
server sql

Spring cloud No spring.config.import property has been defined

* [解决 Spring Cloud 2021.0.5 版本,使用 nacos 做配置中心,报 No spring.config.import property has been defined 的问题\_add a spring.config.import=nacos: property to y ......
property defined Spring spring config

Asp .Net Core系列:基于MySQL的DBHelper帮助类和SQL Server的DBHelper帮助类

目录MySQLDBHelperMSSQLDBHelper MySQLDBHelper app.config中添加配置 <connectionStrings> <add name="MySqlConn" connectionString="server=localhost;port=3306;user ......
DBHelper Server MySQL Core Asp

elixir config 简单说明

elixir 的config 模块,实际上就是标准的方法,只是mix 项目中在使用的时候使用了dsl 模式的,没有使用包含括号的模式调用 给人一种似乎觉得有点怪的调用模式 参考代码 只说明config 方法,实际上Config 模块还包含了其他方法 mix 中的调用 import Config co ......
elixir config

修改账户密码时提示 ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement 错误

修改账户密码时提示 ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement 错误 ......
共2220篇  :2/74页 首页上一页2下一页尾页