LoginSignup
14
13

More than 5 years have passed since last update.

d3.jsonでpostリクエストを送信する

Posted at

メモ

js

var parm = {name:"test", email:"xxx@xxx.com" }

d3.json("http://hoge.com/api")
    .header("Content-Type", "application/json")
    .post(JSON.stringify(parm), function(error, data) {
        console.log(data);
    });

14
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
13