Post form data without reloading to controller

Can I submit html form data to the controller without reloading the form in beego framework?

I do not know Beego. But a general answer from my form experience:

Both SSR (Go - Server Side Rendering) and CSR (Client Side Rendering) have their benefits. But a mix of them is SSG (Static Site Generation) may be more beneficial. Which means that Go renders the HTML at build time from templates and all dynamic content provided by AJAX (Javascript) to reduce flickering and reload.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.