2024年6月18日
摘要: 需求: 点击底部tab页 跳转到页面中时 弹窗提示 然后页面返回某一页 onshow/onLoad 很简单的需求 uni.showToast({ icon: 'error', title: '页面开发中...', duration: 1000, mask: true}) setTimeout(()= 阅读全文
posted @ 2024-06-18 14:06 侗家小蚁哥 阅读(542) 评论(0) 推荐(0)
摘要: 1.navigateTo 保留当前页面,跳转到应用内的某个页面,使用uni.navigateBack可以返回到原页面。 要注意的是navigateTo只能跳转的应用内非 tabBar 的页面的路径 , 路径后可以带参数;如果跳转url参数为tabBar的路径则无法进行跳转 2.redirectTo关 阅读全文
posted @ 2024-06-18 09:17 侗家小蚁哥 阅读(532) 评论(0) 推荐(0)
  2024年6月4日
摘要: 报错: System.PlatformNotSupportedException: System.Drawing.Common is not supported on non-Windows platforms. See https://aka.ms/systemdrawingnonwindows 阅读全文
posted @ 2024-06-04 14:37 侗家小蚁哥 阅读(191) 评论(0) 推荐(0)
  2024年5月31日
摘要: 1. beforeCreate 初始化界面前 : 在当前阶段data、methods、computed以及watch上的数据和方法都不能被访问。 2. created初始化界面后 : 在实例创建完成后发生,当前阶段已经完成了数据观测,也就是可以使用数据,更改数据,在这里更改数据不会触发updated 阅读全文
posted @ 2024-05-31 16:41 侗家小蚁哥 阅读(61) 评论(0) 推荐(0)
  2024年5月23日
摘要: public virtual IResponseMessageBase OnImageRequest(RequestMessageImage requestMessage); public virtual IResponseMessageBase OnLinkRequest(RequestMessa 阅读全文
posted @ 2024-05-23 09:44 侗家小蚁哥 阅读(62) 评论(0) 推荐(0)
  2024年5月21日
摘要: C#-System-LinQ-条件精确查询、高级查询 条件查询:Lambda表达式 Repeater1.DataSource = con.Car.Where(r => r.Name == name);多条件查询:Repeater1.DataSource = con.Car.Where(r => r. 阅读全文
posted @ 2024-05-21 10:35 侗家小蚁哥 阅读(144) 评论(0) 推荐(0)
摘要: 参考网站 https://blog.csdn.net/qq_38179167/article/details/80654093 https://www.axihe.com/charles/charles/proxy-phone.html http://www.cnblogs.com/jiayuchn 阅读全文
posted @ 2024-05-21 10:35 侗家小蚁哥 阅读(163) 评论(0) 推荐(0)
摘要: Liunx服务器CentOS7.6配置,配合宝塔面板,Nginx,netcore webapi接口访问 1.安装netcore环境 参考文章:https://docs.microsoft.com/zh-cn/dotnet/core/install/linux-centos 安装 .NET 之前,请运 阅读全文
posted @ 2024-05-21 10:30 侗家小蚁哥 阅读(448) 评论(0) 推荐(0)
摘要: 第一步:基于现有数据库生成POCO数据类和数据库上下文需要借助Visual Studio一个扩展插件-- Entity Framework Power Tools(一个Code First反向工程工具)。只要在Visual Studio扩展里面输入“Entity Framework Power”搜索 阅读全文
posted @ 2024-05-21 10:24 侗家小蚁哥 阅读(55) 评论(0) 推荐(0)
摘要: 1、netcore2.1.2,swagger.aspnetcore 1.1.0版本。发布netcore项目时swagger的接口文档xml 遗漏,始终发布不上去。后来查阅资料,讲的好像是netcore的一个bug,默认过滤掉一些xml文件。如果需要发布,则需要改动csproj文件或project.j 阅读全文
posted @ 2024-05-21 10:20 侗家小蚁哥 阅读(59) 评论(0) 推荐(0)