Get data from rest service using D3

后端 未结 3 753
暗喜
暗喜 2021-01-05 03:07

I have a working web service at http://localhost/RestService/GetTransactionByStatus/1. When I run that URL on my browser I\'m getting the correct JSON-formatted response:

相关标签:
3条回答
  • 2021-01-05 03:47

    Look at the documentation. Here is an example:

    d3.json('http://localhost/RestService/GetTransactionByStatus/' + id, function(data) {
        console.log(data.transactionConcil);
    });
    
    0 讨论(0)
  • 2021-01-05 04:00

    As of d3 v5, this has become

        d3.json('http://localhost/RestService/GetTransactionByStatus/' + id)
          .then(function(data) {
            console.log(data.transactionConcil);
           });
    
    0 讨论(0)
  • 2021-01-05 04:04

    Update 2019:

    For any host - localhost or some server, you can directly get data by just mentioning rest api path, so that your code can be used on any server

    d3.json("/RestService/GetTransactionByStatus/" + id, function(error, data) {
                console.log(data);
    });
    
    0 讨论(0)
提交回复
热议问题