Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8935259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:57:11+00:00 2026-06-15T09:57:11+00:00

I am very new to the dart programming any help is appreciated. void main()

  • 0

I am very new to the dart programming any help is appreciated.

void main() {
  var server = new HttpServer();
  server.listen('127.0.0.1', 8080);
  server.
  addRequestHandler(
  accept(HttpRequest function) => acceptInput(request, response), handler);
 }

I want to add the function below to the request handler.
server.addrequestHandler()
I would like to do this so that I can add many request handlers as such including one for websockets
A sample or a tutorial would be very helpful.

I want to keep each handler in a separate function just for simplicity.

void acceptInput(HttpRequest request,HttpResponse response){
  print(request.connectionInfo.toString());
  print(request.queryParameters.toString());
  response.outputStream.write('Hello dude'.charCodes);
  response.outputStream.close();
}

Note:I know my void main code is wrong I need help to make it correct so that it incorporates the acceptInput Function.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:57:12+00:00Added an answer on June 15, 2026 at 9:57 am

    Actually, you’re really close.

    Try this:

      var server = new HttpServer();
      server.addRequestHandler(
          (req) => req.path == '/save',
          handleSave);
      server.addRequestHandler(
          (req) => req.path == '/delete',
          handleDelete);
      server.defaultRequestHandler = new StaticFileHandler(basePath).onRequest;
    

    Where handleSave and handleDelete are just functions, like:

    handleSave(HttpRequest req, HttpResponse resp) {
      // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

very new to javascript, but any help to get me started would be appreciated.
Im very new to mysql, and any help would be much appreciated! I have
very new to writing Java, so am grateful for any help I can get.
Very new to Jquery and wondering if anyone can help me with the following
Am very New to Web Page Development. In my website i have the help
I'm very new to programming & came across a program in a book i'm
Very new SQL Server, am using SQL server 2008. I have two tables, Table
Very new to web programming still and I don't really have a specific question
Very new to SQL Server. I am needing to develop a SQL Server database
Actually very new user to bash.and I am logging into server using ssh sam@xyz.com

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.