Implement jetzig.http.Request.params() which parses either a JSON request body or a query param string into a jetzig.data.Value.
Allow configuring params for static site generation - configure an array of params for each endpoint which is then parsed at build time and a separate JSON and HTML output is generated for each by invoking the relevant view function and passing in resource ID/params. Params are stored in generated routes.zig for route matching at run time.
Implement
jetzig.http.Request.params()
which parses either a JSON request body or a query param string into ajetzig.data.Value
.Allow configuring params for static site generation - configure an array of params for each endpoint which is then parsed at build time and a separate JSON and HTML output is generated for each by invoking the relevant view function and passing in resource ID/params. Params are stored in generated
routes.zig
for route matching at run time.