lvivski / start

Sinatra inspired web development framework for Dart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to get the posted data?

freewind opened this issue · comments

I mean a form in HTML:

<form method="post">
<input type="text" name="title" />
<input type="submit" />
</form>

How to get the value of posted title?

request.input is an HttpRequest you data should be in it http://api.dartlang.org/docs/releases/latest/dart_io/HttpRequest.html

Sorry, I can't find an API to get the post data in the doc of HttpRequest :(