$(function(){
$.ajax({
type: 'POST',
dataType: 'json',
data:{'currency':'USD','exchangeCurrency':'CNY','orderAmount':100},
url: 'https://exchanger.brezzeglobal.com/api/common/exchangeRate',
success: function(obj) {
console.log(obj);
},
error: function(obj){
console.log('error:'+obj);
}
});
});
999
USD
CNY