上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: public void TEst() { var dics = new List<Dictionary<string, int>>(); dics.Add(new Dictionary<string, int> { { "key0", 12 }, { "key1", 4 }, { "key2", 5 阅读全文
posted @ 2024-02-26 15:18 天天向上518 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1:Nuget package <PackageReference Include="NPOI" Version="2.5.1" /> <PackageReference Include="Npoi.Mapper" Version="3.5.1" /> using Newtonsoft.Json.L 阅读全文
posted @ 2024-01-26 14:28 天天向上518 阅读(132) 评论(0) 推荐(0) 编辑
摘要: jenkins安装 1:安装 sudo docker pull jenkins/jenkins 2:路劲 /home/fengge/jenkins_home 3:运行 :/var/jenkins_home 运行数据多了这个错误的东东路径 jenkins_home sudo docker run -d 阅读全文
posted @ 2024-01-25 09:46 天天向上518 阅读(16) 评论(0) 推荐(0) 编辑
摘要: PgSql 行转列的使用 jsonb_each与row_to_json 1:正常的几行数据 2:转换后 3:code (以commodity来分组) select "Id" , "JabilPn" ,"Brand" ,"PricelnUsd" ,"Commodity" from "Eme_Mater 阅读全文
posted @ 2024-01-24 17:11 天天向上518 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 注意点,要先赋值给左侧, public async Task<ResponseResult<dynamic>> doTest() { string sqlStr = @"select ""JabilPn"" from public.""Eme_Materials"" limit 1"; var da 阅读全文
posted @ 2024-01-12 16:26 天天向上518 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Angular使用分页,具体步骤如下: 1:根模块或者要开发的当前分开的模块下面的根模块导入 import { PaginatorModule } from 'primeng/paginator'; 2:html端的table布局 <div> <p-table [value]="PageDatas" 阅读全文
posted @ 2023-11-12 21:36 天天向上518 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1:导入相关的包 import { MultiSelectModule } from 'primeng/multiselect'; 2:html code <div class="grid"> <div class="card flex justify-content-center"> <p-mul 阅读全文
posted @ 2023-11-12 21:20 天天向上518 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 属性样式绑定 属性样式的多目表达式绑定 Angular-ifelse条件判断来渲染那一块 Angular事件 双向绑定 修改表单上的控件的值 Angular表单验证-自带的 Angular表单验证-自定义 *******后续补上******** 路由 Angular自带的Get和Post请求 npm 阅读全文
posted @ 2023-11-05 23:31 天天向上518 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 创建安装Angular 12版本: npm install -g @angular/cli@12.2.17 检查angular -cli的版本ng--version, ng --service 创建工程: ng new jp-demo1 add Angular roting? y ......... 阅读全文
posted @ 2023-11-03 23:27 天天向上518 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 父传子 父组件给子组件传递方法 将整个父组件传值给子组件 子传父 阅读全文
posted @ 2023-11-03 15:47 天天向上518 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页