デイトシリーズ(六)ポストお願いします.

1107 ワード

import 'dart:html';

void main() {
       var data = { 'firstName' : 'John', 'lastName' : 'CarMark' };

        HttpRequest.postFormData('http://localhost:3000/pt', data).then((HttpRequest resp) {
          // Do something with the response.
          querySelector('#post_cb').text = "       :" + resp.responseText;
       });
}
index.
<!DOCTYPE html>
 
<html>
<head>
    <meta charset="utf-8"> 
    <title>posttest</title> 
    <script async src="main.dart" type="application/dart"></script> 
</head>

<body>

  <div id="post_cb"></div>

</body>
</html>
結果:(クロスドメイン問題に注意)
dart系列(六) post请求_第1张图片