đ Frequently Asked Questions FAQ
đ ī¸ Development Related Issuesâ
Q: Data not displayed after application deployment.â
đĄ A: Since in the editor, super administrator permissions are generally used, if data is not displayed after application deployment, please prioritize checking the basic permissions of the data model.
Q: Images not displayed after application deployment.â
đĄ A: Please troubleshoot by following these steps:
đ Prioritize checking whether cloud storage permissions have been granted
đ If cloud storage permission settings are correct, please refer to the Image Component Documentation FAQ
Q: Workflow Execution Concurrency Limitâ
đĄ A: There is a call limit of 2000 times per hour.
Q: Conditions for event execution to enter the failure branch in the editorâ
đĄ A: The following situations will trigger the failure branch:
- đ Abnormal network status
- â ī¸ Internal Server Error
- đģ Custom code actively throws an exception:
throw new Error("An error occurred")
Q: How to implement querying more than 200 data records in a single requestâ
đĄ A: Use the Database Query Collection method to query up to 1000 records in a single request.
Q: Page access exception occurs after calling the logout method in Mini Programâ
đĄ A: Define the following sample JavaScript method in the editor and call this method in the event that triggers logout:
export default async function ({ event, data }) {
// Set logout status
$w.page.dataset.state.isToLogOut = true;
// Execute logout
await $w.auth?.signOut?.();
// Determine the platform type and perform corresponding operations
$w.wedaContext.platforms.includes("MP")
? // Mini Program: Restart and redirect to the specified page
wx.restartMiniProgram({
path: "Replace with your own page path", // Please replace with the actual page path
})
: // Web side: Refresh the page after a delay, and it will automatically redirect to the default login page.
setTimeout(() => {
window.location.reload();
}, 1000);
}
- Please replace
"Replace with your own page path"
with the actual page path you need to redirect to - On the Mini Program side, use
wx.restartMiniProgram()
to restart the mini program - On the Web side, use
window.location.reload()
to refresh the page
Q What are the differences between Mini Program subscription messages and WeChat Official Account subscription messages? Can they share the same openid?â
đĄ A: Refer to the flowchart below

đĸ Platform Related Issuesâ
Q: What is the relationship between WeDa and CloudBase?â
đĄ A: WeDa is a feature module of CloudBase.

Q: Cannot find the Approval Flow entry in the Cloud Development Platformâ
đĄ A: Approval Flow is currently only available to existing and Enterprise Edition and above plans.
Q: Does the Cloud Development Platform support authenticating multiple Mini Programs?â
đĄ A: Yes. Please refer to Authenticating Mini Programs to the Cloud Development Platform.
Q: How to bind a custom domain in the Cloud Development Platformâ
đĄ A: Please refer to the document Applying Custom Domains for configuration.