Web.config 中配置 <configuration> ... <connectionStrings> <add name="SQLiteConnection" connectionString="Data Source=|DataDirectory|\crm2_fts5_test.…
https://github.com/Alfred-Skyblue/vue-draggable-plus/issues/189 webpack打包开启代码压缩,且项目中使用vue-draggable-plus并开启reduce_vars时,运行时报错。 需关闭reduce_vars。 module.exports = { ... // 优化配置 o…

Visual Studio调试WEB项目,网站绑定域名、SSL证书及允许外部访问
关于Vue Router将query参数传递至props和传递中文字符串的处理
IOS使用UIImagePickerController拍摄并裁剪照片时,裁剪框无法拖动的解决办法
iOS SwiftUI 沉浸式状态栏 (透明状态栏)与状态栏文字设置方法
vivo推送服务注册小坑

绑定域名 Visual Studio调试C# ASP.NET项目时使用IIS Express启动服务器,默认情况只能绑定localhost,使用以下方法可以绑定任意ip或域名。可以绑定真实域名、添加证书,将DNS解析至局域网地址,局域网内可进行真实域名下的接口调试。 修改IIS Express绑定的域名和端口 在项目运行后,右键状态栏上的IIS E…
将路由参数传递至props 路径参数params 对于路径参数params/users/:id,仅需在路由中定义props: true const routes = [ ... { path: '/user/:id', component: User, props: true } ... ] 在User组件中接收 const p…
参考:https://stackoverflow.com/questions/12630155/uiimagepicker-allowsediting-stuck-in-center/53440254#53440254 extension UIImagePickerController { open override var childForSta…
如果想要WKWebView忽略安全边距,需要如下的额外设置: struct WebView: UIViewRepresentable { let webView = WKWebView(frame: .zero, configuration: makeWebviewCfg()) // 控制状态栏文字颜色的变量 @Binding var status…
使用vivo推送服务SDK时,必须在turnOnPush成功后再getRegId,否则拿到regId的为null 应该在turnOnPush的IPushActionListener.onStateChanged方法中或被调用之后再getRegId import com.vivo.push.IPushActionListener; import co…

C#项目调试打断点提示“当前不会命中断点,还没有为该文档加载任何符号”解决办法
Node.js Npm 常用命令
Android Studio Git报错OpenSSL SSL_connect: Connection was reset in connection to github.com:443Android Studio Git报错
对启动项目右键->属性->生成->高级->“调试信息”改为完全(原始设置为“无”) 当启动项目引用了其他项目时,若想在其他项目的代码中打断点,则其他项目也要进行上述的设置。
代理相关命令 设置HTTP代理: npm config set proxy http://<username>:<password>@<proxy-server-url>:<port> # 将<username>、<password>、<proxy-server-url&…
git config --global http.sslBackend "openssl" git config --global http.sslCAInfo "C:\Program Files\Git\mingw64\ssl\cert.pem" C:\Program Files\Git是git的安装目录