摘要: 1、安装 npm install --save react-native-vector-icons@9.2.0 2、在文件android\app\build.gradle中添加如下代码 apply from: "../../node_modules/react-native-vector-icons 阅读全文
posted @ 2022-11-15 16:40 斌言 阅读(91) 评论(0) 推荐(0)
摘要: 1. 先将apk文件重命名为zip文件 2. 解压zip到指定一个文件夹下,其中的META-INF/CERT.RSA文件即MD5签名文件 3. cmd下打开窗口,输入如下命令: keytool -printcert -file D:/TMP/test/META-INF/CERT.RSA //rsa文 阅读全文
posted @ 2022-07-07 15:20 斌言 阅读(1011) 评论(0) 推荐(0)
摘要: 1、下载指定版本 3.6.23 zip压缩文件 ,似乎高版本已经不支持在server2008了! 下载地址:https://www.mongodb.com/try/download/enterprise 2、D盘新建mongodb目录把文件解压在此目录中并新建两个文件夹data和logs 3、新增环 阅读全文
posted @ 2021-12-03 15:18 斌言 阅读(362) 评论(0) 推荐(0)
摘要: 1、安装 yum install supervisor 2、检查版本 supervisord --version 3、设为开机启动 systemctl enable supervisord.service 4、启动服务 systemctl start supervisord 5、查看服务状态 sys 阅读全文
posted @ 2021-11-05 17:18 斌言 阅读(165) 评论(0) 推荐(0)
摘要: 1、首先安装一个Kestrel服务器包 Microsoft.AspNetCore.Server.Kestrel 2、在Main方法中插入如下代码 static class Program { /// <summary> /// The main entry point for the applica 阅读全文
posted @ 2021-09-13 16:02 斌言 阅读(311) 评论(0) 推荐(0)
摘要: 1、修改web.config文件内容如下: <?xml version="1.0" encoding="utf-8"?> <configuration> <location path="." inheritInChildApplications="false"> <system.webServer> 阅读全文
posted @ 2021-09-02 18:23 斌言 阅读(1045) 评论(0) 推荐(0)
摘要: 1、需要安装两个包 Newtonsoft.Json Microsoft.AspNetCore.Mvc.NewtonsoftJson 2、 Startup 类中的 ConfigureServices 方法插入如下代码 public void ConfigureServices(IServiceColl 阅读全文
posted @ 2021-08-21 14:50 斌言 阅读(408) 评论(0) 推荐(0)
摘要: react native 发布成apk后网络请求会报 network error 是因为android9以后http协议不能用,要用htts协议。需要改成配置能兼容http协议,修改信息如下: android:networkSecurityConfig="@xml/network_security_ 阅读全文
posted @ 2021-05-14 11:49 斌言 阅读(1294) 评论(1) 推荐(0)
摘要: 如果报以下错误 The type initializer for 'OracleInternal.ServiceObjects.OracleConnectionImpl' threw an exception. 解决方式是将.csproj文件中插入以下红色代码: <PropertyGroup Con 阅读全文
posted @ 2021-04-23 17:16 斌言 阅读(487) 评论(0) 推荐(0)
摘要: 1、安装插件 Swashbuckle(版本5.6.0) 和 Swagger.Net.UI(版本1.1.0) 2、SwaggerNet类中注释掉一下代码: using System; using System.IO; using System.Web; using System.Web.Http; u 阅读全文
posted @ 2020-10-15 17:05 斌言 阅读(882) 评论(0) 推荐(0)