Skip to main content

FetchEvent.respondWith()

BFChainInterfaceFetchEventrespondWithLess than 1 minute

Method to return data to the sender;

FetchEvent.respondWith(response)  

Parameters

  • response

    The response data
    Valid data types are:

    Blob

    ReadableStream<Uint8Array>

    string

Return Value

Returns a Promise object;

Example

import { dwebServiceWorker } from "@plaoc/plugins";

dwebServiceWorker.addEventListener('fetch', async (fetchEvent) => {

  const url = new URL(event.request.url);
  
  if (url.pathname.endsWith("/say/hi")) {
  
    // message is the message content
    const message = url.searchParams.get("message");
    
    // Send the message back  
    return event.respondWith(`match`);
  }
  
  return event.respondWith("Not match any routes");
})

Platform Compatibility

Properties/Methods/EventsAndroidiOSDesktop-DevDesktop
respondWithX

FetchEvent

Comments
  • Latest
  • Oldest
  • Hottest
Powered by Waline v2.15.7