搜索结果
查询Tags标签: any,共有 103条记录-
Python 的静态语法
1.Python 的静态语法 1.1 静动态语言的介绍 定义:如果类型检查发生在编译阶段(compile time),那么是静态类型语言(statically typed languages)中,相反的,如果类型检查发生在运行阶段(run time),那么是动态类型语言(dynamically typed languages) 类型检查:就是查看…
2022/9/13 1:23:36 人评论 次浏览 -
FormArray 调整数据位置
get beans() {return this.validateForm.get(beans) as FormArray; }change(fromIdx, toIdx){const formGroup = this.beans.at(fromIdx);this.beans.removeAt(fromIdx);this.beans.insert(toIdx, formGroup); }trackByFn(index: any, item: any) {return index; }同时需要…
2022/9/7 23:23:05 人评论 次浏览 -
[Google] LeetCode 2128 Remove All Ones With Row and Column Flips
You are given an m x n binary matrix grid. In one operation, you can choose any row or column and flip each value in that row or column (i.e., changing all 0s to 1s, and all 1s to 0s). Return true if it is possible to remove all 1s from grid using any…
2022/8/29 6:52:57 人评论 次浏览 -
redis 0: "AUTH <password> called without any password configured for the def
运行项目的时候,报redis 0: "AUTH <password> called without any password configured for the def 原因:主要是redis没有设置密码 解决步骤:1.先进入到redis容器中docker exec -it 名字 /bin/sh2.进行链接容器redis-cli3.设置redis密码如 将 redis 密码设…
2022/8/29 2:52:46 人评论 次浏览 -
一个typescript版本的dao(数据库访问)层的封装
首先学会使用mustache语法 select * from {{key1}}字符中{{key1}}会进行匹配map中的key 例如:let sql = select * from {{key1}};let tableMapper = {"key1": "course",}let result = mustache.render(sql, tableMapper);console.log(result:, resul…
2022/8/13 2:22:54 人评论 次浏览 -
[Typescript] namespace
`namespace` is manily for the left over from the days where we’d refer to libraries through a single global variable. With this in mind, let’s not give namespace too much more thought for now. For example: // using $ as class calling static method $…
2022/8/8 23:24:20 人评论 次浏览 -
KingbaseES 中实现mysql any_value 功能
KingbaseES 中可以通过构造一个聚集函数来实现mysql的any_value功能。 示例 创建函数 create function coalesce_("anyelement","anyelement") returns "anyelement"language sql as $$ select coalesce( $1,$2) $$;create aggregate any_v…
2022/7/16 2:20:31 人评论 次浏览 -
Angular--富文本编辑器Ckeditor
1、官网下载Ckeditor ck5最新版本不会用,目前是用的是ck4,下载full package全包,这样功能比较全。 官网地址:https://ckeditor.com/ckeditor-4/download/ https://ckeditor.com/docs/ckeditor4/latest/api/index.html 2、下载解压后,把ckeditor文件夹拷贝到项目中。…
2022/7/7 23:23:44 人评论 次浏览 -
[oracle]用户与权限管理
创建用户 CREATE USER 用户名 IDENTIFIED BY 密码 DEFAULT TABLESPACE 表空间 TEMPORARY TABLESPACE 临时表空间 QUOTA 空间配额大小 ON 表空间 PASSWORD EXPIRE ACCOUNT LOCK | UNLOCK除了用户名和密码,其它可选 建议一个用户对应一个单独的表空间修改用户 -- DBA指定用…
2022/7/4 2:20:59 人评论 次浏览 -
python内置方法
abs() 求绝对值all() 判断是否都为真,如all([1,2,-1])返回True,all([1,2,0])返回Falseany() 判断是否存在真,如any([1,2,0])返回Truebin() 数字转为二进制chr() 返回ascii码ord() 与chr相反dir() 返回该对象有哪些方法divmod() 地板除filter() 过滤器…
2022/6/30 1:20:22 人评论 次浏览 -
[Professional C# 7] Use of Properties and Methods
➤ Client code should be able to read its value. Write-only properties are not recommended, so, for exam-ple, use a SetPassword method, not a write-only Password property. ➤ Reading the value should not take too long. The fact that something is a pr…
2022/6/25 1:22:40 人评论 次浏览 -
PLsql导入dmp文件
登录sys然后 1、创建表空间 create tablespace CDP datafile D:\app\LBD\virtual\oradata\orcl\CDP.dbf size 2000M; 2、创建新用户1.选择new--user2.点选General标签。选择第一步创建的表空间,并填写用户名密码3.点选Role Privileges标签。Role选择connect,勾选“Defau…
2022/6/11 2:21:30 人评论 次浏览 -
laravel框架中验证后在页面提示错误信息
{{-- 显示错误信息 判断:如果有错误则进行显示,--}} {{-- 通过$errors->any() 获取是否有错误,如果有则返回布尔值true,没有返回布尔值false--}} @if($errors->any())@foreach($errors->all() as $value)<p>{{ $value }}</p>@endforeach …
2022/5/30 23:22:36 人评论 次浏览 -
演示C++成员函数参数的使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81// Copyright ©…
2022/5/26 1:51:28 人评论 次浏览 -
TS不能将类型“any[]”分配给类型“never[]”
1、问题:在处理数组hotGoodsList时出现一个错误,提示不能将类型“any[]”分配给类型“never[]”data: {hotGoodsForm: {pageNum: 1,pageSize: 10},hotGoodsList: [],},...app.ajax.post(/api/goods/getHotGoods, this.data.hotGoodsForm).then((res: any) => {if (re…
2022/4/27 6:12:44 人评论 次浏览