Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
scilla-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
劳工
scilla-core
Commits
ce931af5
Commit
ce931af5
authored
May 09, 2019
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合并dynamic
parent
fac908a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
DataCenter.ts
src/support/DataCenter.ts
+6
-5
No files found.
src/support/DataCenter.ts
View file @
ce931af5
/**
* 数据中心类
*/
export
default
class
DataCenter
{
import
EventEmitter
from
"./EventEmitter"
;
export
default
class
DataCenter
extends
EventEmitter
{
private
store
:
any
=
{};
/**
...
...
@@ -35,7 +36,7 @@ export default class DataCenter {
*/
public
set
(
type
:
string
,
key
:
string
,
value
)
{
if
(
!
value
)
{
if
(
this
.
store
[
type
])
console
.
warn
(
`This operation will override
e all
${
this
.
store
[
type
]}
`
)
if
(
this
.
store
[
type
])
console
.
warn
(
`This operation will override
all
${
this
.
store
[
type
]}
`
);
this
.
store
[
type
]
=
key
;
}
else
{
this
.
store
[
type
][
key
]
=
value
;
...
...
@@ -48,7 +49,7 @@ export default class DataCenter {
* @param key
*/
public
get
(
type
:
string
,
key
:
string
)
{
if
(
!
key
)
return
this
.
store
[
type
]
if
(
!
key
)
return
this
.
store
[
type
]
;
return
this
.
store
[
type
][
key
];
}
...
...
@@ -65,6 +66,6 @@ export default class DataCenter {
* @param expression
*/
public
parse
(
type
:
string
,
expression
:
string
)
{
return
window
[
'eval'
](
`(this.store['
${
type
}
'].
${
expression
}
)`
)
return
window
[
'eval'
](
`(
console.log(this);
this.store['
${
type
}
'].
${
expression
}
)`
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment