Public
HTTP (deprecated)
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

This example shows how to get the query parameters out of a request with the Web API. Check out the searchParams object for more ways to handle query parameters.

1
2
3
4
export const urlQueryStringExample = async (request: Request) => {
const u = new URL(request.url);
return Response.json(Object.fromEntries(u.searchParams.entries()));
};
tmcw-urlquerystringexample.web.val.run
October 23, 2023