-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
新增 creem 支付 #1823
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+1,109
−5
Merged
新增 creem 支付 #1823
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
99b9a34
完成 后端 部分,webo hhok 待完善
littlewrite dc6fbff
前端部分,调试 完善
littlewrite a7d6a8b
完善 订单处理,以及 优化 ui
littlewrite 7e46c43
Update controller/topup_creem.go
littlewrite a97dbdf
Update controller/topup_creem.go
littlewrite 0c01fd4
Update controller/topup_creem.go
littlewrite 0192585
Update model/topup.go
littlewrite 95cb7fc
调整 优化代码细节
littlewrite 6ccb404
完善了 翻译
littlewrite fade73d
Merge branch 'main' into feat_subscribe_sp1
littlewrite ac3baac
Merge branch 'main' into feat_subscribe_sp1
littlewrite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion | 🟠 Major
🧩 Analysis chain
Compute enable_creem_topup from parsed products; return parsed products, not a JSON string.
Current check
setting.CreemProducts != "[]"can be true for invalid JSON; returning a raw JSON string forces clients to re‑parse. Parse once, validate, and return typed JSON.Add before building
data:Add import:
Please confirm the frontend expects an array, not a string.
🏁 Script executed:
Length of output: 963
Return
creem_productsas an array and update frontend parsingIn
controller/topup.go, unmarshalsetting.CreemProductsbefore buildingdataand switch to:// parse once at top of GetTopUpInfo var creemProducts []CreemProduct if err := json.Unmarshal([]byte(setting.CreemProducts), &creemProducts); err != nil { creemProducts = nil } // when constructing response - "enable_creem_topup": setting.CreemApiKey != "" && setting.CreemProducts != "[]", - "creem_products": setting.CreemProducts, + "enable_creem_topup": setting.CreemApiKey != "" && len(creemProducts) > 0, + "creem_products": creemProducts,and add
import "encoding/json"at the top.In
web/src/components/topup/index.jsx(around line 383), remove the JSON.parse and consume the array directly:This ensures the backend supplies a validated array and the UI no longer re-parses a JSON string.
🤖 Prompt for AI Agents