摘要:
<script setup> let addFormVisible = ref(false); function handleAdd(){ addFormVisible = true; //没有生效 } </script> 定义了一个变量 addFormVisible用来控制页面对话框的显示, 在方 阅读全文
摘要:
解决办法: 用记事本打开INI文件,点击菜单栏文件-->另存为-->编码选择UTF-8,然后保存就可以了。 C#操作INI工具类: 1 using System; 2 using System.Runtime.InteropServices; 3 using System.Text; 4 using 阅读全文
摘要:
1、nuget引用 Microsoft.EntityFrameworkCore Microsoft.EntityFrameworkCore.SqlServer Microsoft.EntityFrameworkCore.SqlServer.Design Microsoft.EntityFramewo 阅读全文
摘要:
1、查看头像保存的路径有没有存在Syn_SetPhotoPath 2、如果有处理头像,处理完记得关闭 阅读全文
摘要:
1、查看头像照片设置的路径有没有存在Syn_SetPhotoPath 2、如果有处理头像,头像处理完有没有关闭 阅读全文
摘要:
1、nuget引用 Microsoft.EntityFrameworkCore Microsoft.EntityFrameworkCore.SqlServer Microsoft.EntityFrameworkCore.SqlServer.Design Microsoft.EntityFramewo 阅读全文
摘要:
1、Nuget引入Castle.Core 2、新建CustomInterceptor类,实现IInterceptor接口 1 using Castle.DynamicProxy; 2 using System; 3 using System.Collections.Generic; 4 using 阅读全文
摘要:
1、Nuget引入 Autofac、Autofac.Extensions.DependencyInjection 2、Program.cs里面添加注入配置 { //第一种方式注入 builder.Host.UseServiceProviderFactory(new AutofacServicePro 阅读全文
摘要:
一、支持属性注入 1、创建控制台程序 2、Nuget引入AutoFace 3、创建接口层Business.IServices,包含以下几个接口 IMicrophone.cs 1 namespace Business.IServices 2 { 3 public interface IMicropho 阅读全文
摘要:
1、创建控制台应用程序,Nuget引入Autofac 2、创建接口IMicrophone 1 namespace Business.IServices 2 { 3 public interface IMicrophone 4 { 5 6 } 7 } 3、创建Microphone类 1 using B 阅读全文