Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
孙龙
/
golang-queue-server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
42c2ea56
authored
Nov 27, 2020
by
mushishixian
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
调试
parent
a08b7ca2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
order/goods_remind/main.go
order/goods_remind/main.go
View file @
42c2ea56
...
...
@@ -90,6 +90,7 @@ func main() {
goodsIdsStr
:=
strings
.
Join
(
goodsIds
,
","
)
//去请求商品服务
resp
,
_
:=
req
.
Get
(
util
.
Configs
.
Api_domain
.
GoodsUrl
+
"?goods_id="
+
goodsIdsStr
)
fmt
.
Println
(
resp
.
String
())
//先判断返回的data是不是字典,不是字典代表可能是返回字符串了
if
gjson
.
Get
(
resp
.
String
(),
"data"
)
.
IsObject
()
{
for
goodsIdKey
,
data
:=
range
gjson
.
Get
(
resp
.
String
(),
"data"
)
.
Map
()
{
...
...
@@ -131,6 +132,8 @@ func main() {
panic
(
err
)
}
}
}
else
{
fmt
.
Println
(
"商品服务获取数据为空"
)
}
return
nil
})
...
...
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