Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
model-data-test
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
QA
model-data-test
Commits
5f4cbb56
Commit
5f4cbb56
authored
Feb 09, 2022
by
桂秋月
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
0e28af8c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
5 deletions
+8
-5
workspace.xml
.idea/workspace.xml
+2
-4
2022-02-09.log
logs/2022-02-09.log
+3
-0
base_model.cpython-37.pyc
model_data_api/model/__pycache__/base_model.cpython-37.pyc
+0
-0
base_model.py
model_data_api/model/base_model.py
+3
-1
No files found.
.idea/workspace.xml
View file @
5f4cbb56
...
@@ -6,10 +6,8 @@
...
@@ -6,10 +6,8 @@
<component
name=
"ChangeListManager"
>
<component
name=
"ChangeListManager"
>
<list
default=
"true"
id=
"65ec9bc1-9334-4fb0-a73d-621c8e760de6"
name=
"Default Changelist"
comment=
""
>
<list
default=
"true"
id=
"65ec9bc1-9334-4fb0-a73d-621c8e760de6"
name=
"Default Changelist"
comment=
""
>
<change
beforePath=
"$PROJECT_DIR$/.idea/workspace.xml"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/.idea/workspace.xml"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/.idea/workspace.xml"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/.idea/workspace.xml"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/logs/2022-02-08.log"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/logs/2022-02-08.log"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/logs/2022-02-09.log"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/logs/2022-02-09.log"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/model_data_api/handler/Automatic_Handler.py"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/model_data_api/handler/Automatic_Handler.py"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/model_data_api/model/base_model.py"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/model_data_api/model/base_model.py"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/model_data_api/handler/logic.py"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/model_data_api/handler/logic.py"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/startup.py"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/startup.py"
afterDir=
"false"
/>
</list>
</list>
<option
name=
"SHOW_DIALOG"
value=
"false"
/>
<option
name=
"SHOW_DIALOG"
value=
"false"
/>
<option
name=
"HIGHLIGHT_CONFLICTS"
value=
"true"
/>
<option
name=
"HIGHLIGHT_CONFLICTS"
value=
"true"
/>
...
...
logs/2022-02-09.log
View file @
5f4cbb56
[2022-02-09 14:28:16 autoreload.py:_check_file:201 INFO] /Users/dm/Desktop/python_script/model-data-test/model_data_api/model/base_model.py modified; restarting server
[2022-02-09 14:28:54 autoreload.py:_check_file:201 INFO] /Users/dm/Desktop/python_script/model-data-test/model_data_api/model/base_model.py modified; restarting server
[2022-02-09 14:29:01 autoreload.py:_check_file:201 INFO] /Users/dm/Desktop/python_script/model-data-test/model_data_api/model/base_model.py modified; restarting server
model_data_api/model/__pycache__/base_model.cpython-37.pyc
View file @
5f4cbb56
No preview for this file type
model_data_api/model/base_model.py
View file @
5f4cbb56
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
# 引入需要的模块
# 引入需要的模块
# from sqlalchemy import create_engine
# from sqlalchemy import create_engine
import
logging
from
sqlalchemy.orm
import
sessionmaker
from
sqlalchemy.orm
import
sessionmaker
# 使用MySQL数据库
# 使用MySQL数据库
from
collections
import
Iterable
from
collections
import
Iterable
...
@@ -59,7 +61,7 @@ class BaseManager:
...
@@ -59,7 +61,7 @@ class BaseManager:
def
get_json
(
self
,
result
):
def
get_json
(
self
,
result
):
try
:
try
:
print
(
'base result:'
,
result
,
type
(
result
))
logging
.
ERROR
(
'base result:'
+
str
(
result
)
+
str
(
type
(
result
)
))
if
isinstance
(
result
,
Iterable
):
if
isinstance
(
result
,
Iterable
):
tmp
=
[
dict
(
zip
(
res
.
__dict__
.
keys
(),
res
.
__dict__
.
values
()))
for
res
in
result
]
tmp
=
[
dict
(
zip
(
res
.
__dict__
.
keys
(),
res
.
__dict__
.
values
()))
for
res
in
result
]
for
t
in
tmp
:
for
t
in
tmp
:
...
...
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