-1
HTTP API請求填入HTML表我有一個表與流星
<table>
<thead>
<tr>
<th>Year</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>1990</td>
<td>-</td>
</tr>
...
</tbody>
</table>
,我想打一個GET請求世界銀行API在此表中填寫的值。
我的GET請求是流星方法
Meteor.methods({
getData: function() {
try {
const url = 'http://api.worldbank.org/countries/br/indicators/NY.GDP.MKTP.CD?date=1990:2000&format=json';
const request = HTTP.get(url);
return request;
} catch (e) {
console.log(e);
return false;
}
},
});
,我打電話給我的方法從客戶端
Meteor.call('getData', function(error, result) {
console.log(result);
});
所以我在控制檯中的值,但我想更換-
在正確的值的HTML表格。