<button id="delAll">批量删除</button>//给按钮一个id属性 <input type="checkbox" name="check" checkid="{{$v->id}}">//给input设置一个自定义的id <script src="https://apps.bdi ...
分类:
其他好文 时间:
2021-04-15 12:05:39
阅读次数:
0
UE4支持多种内存分配器: /** Which allocator is being used */ enum EMemoryAllocatorToUse { Ansi, // Default C allocator Stomp, // Allocator to check for memory s ...
分类:
其他好文 时间:
2021-04-13 12:34:37
阅读次数:
0
四则运算代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ClassLibrary1{ public ...
分类:
其他好文 时间:
2021-04-12 12:51:16
阅读次数:
0
Clang Static Analyzer-使用手册-编写Checker代码实现 示例程序MainCallChecker.cpp #include"ClangSACheckers.h"#include"clang/StaticAnalyzer/Core/BugReporter/BugType.h"# ...
分类:
其他好文 时间:
2021-04-10 13:02:00
阅读次数:
0
有个需求要求过滤掉同单号的 未检验数据, 如果已检验数据和未检验数据同时存在,则取已检验数据,如果只有未检验数据,取未检验数据 后来找的一个解决方案 使用ROW_NUMBER() OVER()做过滤 具体如下 ( SELECT ROW_NUMBER ( ) OVER ( PARTITION BY * ...
分类:
数据库 时间:
2021-04-09 13:02:10
阅读次数:
0
W: GPG error: http://mirrors.cloud.aliyuncs.com/ubuntu xenial-backports InRelease: Could not execute 'apt-key' to verify signature (is gnupg installed ...
分类:
其他好文 时间:
2021-04-08 13:43:02
阅读次数:
0
在测试过程当中,测试数据往往会与代码进行分离,进行独立存储。存储或获取测试数据的方式有很多,如excel文件中、txt文件中、yaml文件中、或者从数据库中读取。今天我们要说的就是怎样从yaml文件中获取数据。 一、认识python中的yaml库安装:安装包名是pyyaml导入:import yam ...
分类:
其他好文 时间:
2021-04-06 14:45:44
阅读次数:
0
简介 class是面向对象编程的一个非常重要的概念,python中也有class,并且支持面向对象编程的所有标准特性:继承,多态等。 本文将会详细讲解Python中class的信息。 作用域和命名空间 在详细讲解class之前,我们来看一下作用域和命名空间的概念。 命名空间(Namespace)是从 ...
分类:
编程语言 时间:
2021-04-02 13:33:05
阅读次数:
0
最精简版本 int check_data(int *array, int n) { while(n--) if (*array++ != 0x00) return 0; return 1; } 返回1 array数组全零,否则正常非全零。 int check_data(int *array) { w ...
分类:
编程语言 时间:
2021-04-01 13:15:24
阅读次数:
0
这周开始使用activiti工作流。任务要求:做一个二级审批流程(可驳回) 遇到的一些问题: IDEA集成activiti,2019版本的IDEA插件商店和别的版本不同。 bpmn会出现乱码问题,需要更改IDEA的相关配置文件 activiti操作数据库会出现乱码问题,需要在activiti.cfg ...
分类:
其他好文 时间:
2021-04-01 12:56:51
阅读次数:
0