public class EdiOFSRestHelper { public string appKey { get { return ""; } } public string appsecret { get { return ""; } } /// <summary> /// 返回结果格式 // ...
分类:
Web程序 时间:
2021-04-05 12:00:50
阅读次数:
0
//js /** * 函数节流 * @param func * @param wait * @returns {function(...[*]=)} */ export const throttle = (func, wait = 1500) => { let timeout; return fun ...
分类:
其他好文 时间:
2021-04-01 12:56:04
阅读次数:
0
1.正常情况下,代码这样子写就行了 // 调用添加模型代码 myObjects.push(mesh) // 调用删除模型代码 clearScene(myObjects) /** * 清除模型,模型中有 group 和 scene,需要进行判断 * @param scene * @returns */ ...
分类:
Web程序 时间:
2021-03-17 14:17:33
阅读次数:
0
问题: GoLand 连接数据库报错:Server returns invalid timezone. Go to ‘Advanced’ tab and set ‘serverTimezone’ property manually。 这是时区serverTimezone设置的问题 解决法: 修改本地 ...
分类:
数据库 时间:
2021-03-16 12:03:12
阅读次数:
0
调整数组顺序使奇数位于偶数前面 /// <summary> /// 首尾双指针法 /// </summary> /// <param name="nums"></param> /// <returns></returns> public int[] HeadTailExchange(int[] nu ...
分类:
其他好文 时间:
2021-03-11 12:06:51
阅读次数:
0
1 简介 json格式(JavaScript Object Notation的缩写)是一种用于交换数据的文本格式。每个JSON对象,就是一个值。 要么是简单类型的值,要么是复合类型的值,但是只能是一个值,不能是两个或更多的值。这就是说,每个JSON文档只能包含一个值。 2 JSON对值的类型和格式的 ...
分类:
Web程序 时间:
2021-03-05 13:20:47
阅读次数:
0
create function [dbo].[GetSplitStr] ( @str nvarchar(500), --要分割的字符串 @split nvarchar(50), --分隔符号 @index int --取第几个元素 ) returns nvarchar(500) as begin d ...
分类:
数据库 时间:
2021-03-03 12:27:23
阅读次数:
0
https://www.cnblogs.com/wangbg/p/14020022.html https://docs.microsoft.com/zh-cn/dotnet/api/system.runtime.serialization.datacontractserializer?view=ne ...
A pointer is a general concept for a variable contains an address in memory. Smart pointers are data structures that not only act like a pointer but a ...
分类:
其他好文 时间:
2021-02-16 12:42:23
阅读次数:
0
总结下,后期会陆续更新 using System; using System.Collections.Generic; using System.Linq; using System.Text; using StackExchange.Redis; using System.Threading; u ...