相关文章
creator-webview加载优化
title: creator-webview加载优化 categories: Cocos2dx tags: [cocos2dx, creator, webview, 优化, 加载, 性能] date: 2024-03-02 13:17:20 comments: false mathjax: true toc: true creator-webview加载优化 前篇
Android WebView shouldInterceptRequest - https://www.ji…
建站知识
2024/12/23 5:21:53
MD5算法:密码学中的传奇
title: MD5算法:密码学中的传奇 date: 2024/3/15 20:08:07 updated: 2024/3/15 20:08:07 tags:
MD5起源算法原理安全分析优缺点比较技术改进示例代码应用趋势 MD5算法起源:
MD5(Message Digest Algorithm 5)算法是由MIT的计算机…
建站知识
2024/11/8 5:24:06
19 # 高级类型:索引类型
let obj {a: 1,b: 2,c: 3
}
// 抽取值形成数组
function getValues(obj: any, keys: string[]) {return keys.map(k > obj[k])
}console.log(getValues(obj, [a, b])); // [1, 2]
console.log(getValues(obj, [e, f])); // [undefined, undefined] 属性不存在也不报错可以使…
建站知识
2024/10/30 1:43:55
Android 启动service(Kotlin)
一、使用startForegroundService()或startService()启用service
**Activity //启动service
val intent: Intent Intent(ServiceActivitythis,MyService::class.java)
//Build.VERSION_CODES.O 26
// Android8以后,不允许后台启动Service
i…
建站知识
2024/11/29 2:06:02
Docker 命令大全
Docker 命令大全
容器生命周期管理
run start/stop/restart kill rm pause/unpause create exec
容器操作
ps inspect top attach events logs wait export port stats
容器rootfs命令
commit cp diff
镜像仓库
login pull push search
本地镜像管理
images rmi tag …
建站知识
2024/11/29 14:06:48
手写 UE4中的 TArray
#pragma once
#include<iostream>
#include<stdexcept>
#define CHECK_INDEX_RANGE(Index) if (Index > ElementCount) throw std::out_of_range("索引超出界限")template<typename ElementType>
class TArray
{typedef unsigned int uint;
pri…
建站知识
2024/10/12 14:31:11
nodejs 使用express插件multer文件上传,接收不到文件的bug
把路径改成绝对路径即可 改成 temp是你想上传到文件夹的路径,一般是在项目根目录下
建站知识
2024/12/19 21:01:52