[Webkit-unassigned] [Bug 228029] New: Extend the URL class with an accessor for Query Parameters

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jul 16 10:51:41 PDT 2021


https://bugs.webkit.org/show_bug.cgi?id=228029

            Bug ID: 228029
           Summary: Extend the URL class with an accessor for Query
                    Parameters
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebCore Misc.
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: bfulgham at webkit.org

We currently have the ability to retrieve the full Query String from a URL. It would be convenient to be able to iterate over the set of query parameter key/value pairs.

Extend the URL class with a new method similar to the following:

struct QueryParameter {
    StringView key;
    StringView value;
};

Vector<QueryParameters> URL::queryParameters() const;

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210716/7c6452c7/attachment.htm>


More information about the webkit-unassigned mailing list