How to display the obtained json data as veb's json data in the simplest way #21830
-
If I use |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Beta Was this translation helpful? Give feedback.
-
@["/1688_detail/";get;post] |
Beta Was this translation helpful? Give feedback.
@["/1688_detail/";get;post]
pub fn (app &App) fetch_1688_detail(mut ctx Context,offer_id string) veb.Result {
req_body := query_product_detail(offer_id) or { return ctx.json({"code": "101", "msg": "offerid 必填"})}
println(req_body)
ctx.set_content_type('text/plain; charset=utf-8')
return ctx.text(req_body)
}