dart系列(六) post请求

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

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.html


 


     
    posttest 
     




  


结果:(注意 跨域问题

dart系列(六) post请求_第1张图片

转载于:https://my.oschina.net/u/2542078/blog/539072

你可能感兴趣的:(dart系列(六) post请求)