Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
fac60e1b
提交
fac60e1b
authored
12月 21, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
/DataColumnApi/getSqlOptions接口缓存参数优化 增加 allValues 参数 参数变化则不调用缓存
上级
66371377
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
83 行增加
和
71 行删除
+83
-71
binaryEncode.js
one_stop_public/Base16/binaryEncode.js
+0
-1
index.jsx
one_stop_public/tableCompon/index.jsx
+13
-2
apiServiceCache.js
one_stop_public/utils/apiServiceCache.js
+70
-68
没有找到文件。
one_stop_public/Base16/binaryEncode.js
浏览文件 @
fac60e1b
...
...
@@ -12,7 +12,6 @@ import { getTransformApi } from '@/webPublic/one_stop_public/2022beidianke/local
import
{
strToBinary
}
from
'./strToBinary'
;
// 字符串转二进制 混淆代码
import
{
binaryToStr
}
from
'./binaryToStr'
;
import
{
getVisitorToken
}
from
'@/webPublic/zyd_public/utils/getHeaders'
;
import
{
saveCacheData
}
from
'@/webPublic/one_stop_public/utils/apiServiceCache'
;
// 二进制字符串转JSON字符串 混淆代码
const
test
=
!!
getUrlInfo
().
test
;
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
fac60e1b
...
...
@@ -409,13 +409,17 @@ export default class TableCom extends Component {
dataColumn
.
base52
=
this
.
props
.
uuid
;
}
}
// if(this.props.uuid === 'id_44cd90f124abc2427428ee2285222628953f'){
// console.log('我去调接口查枚举了');
//
// }
if
(
this
.
dataFilter
.
includes
(
json
.
comName
)
||
json
.
comName
===
'TableSelect'
)
{
const
obj2
=
{
...
obj
,
...
props
.
form
.
getFieldsValue
(),
...
props
.
defaultValues
[
this
.
props
.
formKey
],
...
props
.
form
.
getFieldsValue
(),
};
console
.
log
(
obj2
[
'KFRwZkWcNJQ'
],
'422222222'
);
this
.
getData
(
json
,
dataColumn
,
obj2
);
}
if
(
!!
json
.
formula
&&
!
json
.
isFormulaOnce
)
{
...
...
@@ -1307,6 +1311,7 @@ export default class TableCom extends Component {
fetchData3
=
(
obj
,
dataColumn
,
init
,
json
,
allValues
)
=>
{
const
{
sqlKey
,
labelName
,
valueName
,
isMeta
,
filterSql
}
=
json
;
// console.log(sqlKey, allValues);
// debugger;
if
(
isMeta
)
{
...
...
@@ -1329,6 +1334,8 @@ export default class TableCom extends Component {
}
dispatch
({
type
:
'DataColumn/getSqlOptions'
,
payload
:
params
,
...
...
@@ -1406,6 +1413,10 @@ export default class TableCom extends Component {
// 当上次的请求参数和这次的相同时 不再发起请求
return
false
;
}
// if(params.sqlKey === 'KFRvOyGdyvU'){
// console.log(params);
// }
dispatch
({
type
:
'DataColumn/getSqlOptions'
,
payload
:
params
,
...
...
one_stop_public/utils/apiServiceCache.js
浏览文件 @
fac60e1b
...
...
@@ -7,80 +7,82 @@
window
.
onestopApiServiceCacheData
=
{};
const
cacheApiconfig
=
[
{
key
:
'findParamsKey'
,
// 接口唯一的键
url
:
'/SqlManageEntityApi/findParamsKey'
,
// 接口地址
searchParams
:
'sqlKey'
,
// 缓存的参数
time
:
600
,
// 缓存数据有效期. 单位秒
},
{
key
:
'find'
,
// 接口唯一的键
url
:
'/SqlManageEntityApi/find'
,
// 接口地址
searchParams
:
'sqlKey'
,
// 缓存的参数
time
:
600
,
// 缓存数据有效期. 单位秒
},
{
key
:
'getSqlOptions'
,
// 接口唯一的键
url
:
'/DataColumnApi/getSqlOptions'
,
// 接口地址
searchParams
:
'sqlKey'
,
// 缓存的参数
time
:
3
,
// 缓存数据有效期. 单位秒
},
{
key
:
'findParamsKey'
,
// 接口唯一的键
url
:
'/SqlManageEntityApi/findParamsKey'
,
// 接口地址
searchParams
:
'sqlKey'
,
// 缓存的参数
time
:
600
,
// 缓存数据有效期. 单位秒
},
{
key
:
'find'
,
// 接口唯一的键
url
:
'/SqlManageEntityApi/find'
,
// 接口地址
searchParams
:
'sqlKey'
,
// 缓存的参数
time
:
600
,
// 缓存数据有效期. 单位秒
},
{
key
:
'getSqlOptions'
,
// 接口唯一的键
url
:
'/DataColumnApi/getSqlOptions'
,
// 接口地址
searchParams
:
'sqlKey'
,
// 缓存的参数
otherParams
:
'allValues'
,
time
:
1
,
// 缓存数据有效期. 单位秒
},
];
function
getConfig
(
apiUrl
){
let
findConfig
=
cacheApiconfig
.
find
((
g
)
=>
{
return
apiUrl
===
g
.
url
;
});
return
findConfig
||
undefined
;
function
getConfig
(
apiUrl
)
{
let
findConfig
=
cacheApiconfig
.
find
((
g
)
=>
{
return
apiUrl
===
g
.
url
;
});
return
findConfig
||
undefined
;
}
// 获取缓存数据
export
function
getCacheData
(
apiUrl
,
params
){
return
new
Promise
((
resolve
,
reject
)
=>
{
let
findConfig
=
getConfig
(
apiUrl
);
if
(
!
findConfig
){
resolve
(
false
);
return
;
}
// console.log(apiUrl, params);
let
res
=
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]];
// console.log(res);
if
(
!
res
||
new
Date
().
getTime
()
>
res
?.
expiresTime
){
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]]
=
'pending'
;
resolve
(
false
);
return
;
}
if
(
res
===
'pending'
){
let
interval
=
setInterval
(()
=>
{
let
newD
=
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]];
if
(
newD
!==
'pending'
){
clearInterval
(
interval
);
resolve
(
newD
.
response
);
return
newD
.
response
;
}
},
200
);
}
else
{
resolve
(
res
.
response
);
return
res
.
response
;
}
});
export
function
getCacheData
(
apiUrl
,
params
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
let
findConfig
=
getConfig
(
apiUrl
);
if
(
!
findConfig
)
{
resolve
(
false
);
return
;
}
let
res
=
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]];
if
(
!
res
||
new
Date
().
getTime
()
>
res
?.
expiresTime
||
(
params
[
findConfig
.
otherParams
]
&&
params
[
findConfig
.
otherParams
]
!==
res
.
otherParams
)
)
{
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]]
=
'pending'
;
resolve
(
false
);
return
;
}
if
(
res
===
'pending'
)
{
let
interval
=
setInterval
(()
=>
{
let
newD
=
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]];
if
(
newD
!==
'pending'
)
{
clearInterval
(
interval
);
resolve
(
newD
.
response
);
return
newD
.
response
;
}
},
200
);
}
else
{
resolve
(
res
.
response
);
return
res
.
response
;
}
});
}
// 保存缓存数据
export
function
saveCacheData
(
apiUrl
=
''
,
params
,
response
=
{}){
let
findConfig
=
getConfig
(
apiUrl
);
if
(
findConfig
){
// console.log(params);
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]]
=
{
response
,
expiresTime
:
new
Date
().
getTime
()
+
findConfig
.
time
*
1000
,
};
// console.log(window.onestopApiServiceCacheData);
return
true
;
}
else
{
return
false
;
}
export
function
saveCacheData
(
apiUrl
=
''
,
params
,
response
=
{})
{
let
findConfig
=
getConfig
(
apiUrl
);
if
(
findConfig
)
{
// console.log(params);
window
.
onestopApiServiceCacheData
[
findConfig
.
key
+
params
[
findConfig
.
searchParams
]]
=
{
response
,
expiresTime
:
new
Date
().
getTime
()
+
findConfig
.
time
*
1000
,
otherParams
:
params
[
findConfig
.
otherParams
]
||
undefined
,
// 接口参数做缓存
};
// console.log(window.onestopApiServiceCacheData);
return
true
;
}
else
{
return
false
;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论