Hi there! I’m trying to teach myself some javascript to access 3rd party web services. Upon following the support documentation we are presented with 2 forms of doing it:
Client-side Service Call : the example returns the currency exchange rate from USD to a user defined currency. I tried following the steps including the 3 elements on my wix page (text input, button and text label) and then connecting the button event on click with the function “FetchRate” as follows:
$w.onReady(function () {
//TODO: write your page related code here...
});
export function buttonFetchRate_onClick(event) {
//Add your code for this event here:
var url = 'http://api.fixer.io/latest?base=USD';
var symbol = $w("#textInputSymbol").value;
var fullUrl = url + '&symbols=' + symbol;
fetch(fullUrl, {
method: 'get'
})
.then(response => response.json())
.then(json => $w("#textRate").text = json.rates[symbol]);
}
but when previewing the site and clicking the button I’m getting this error:
Wix code SDK error: The text parameter that is passed to the text method cannot be set to the value 0.85259. It must be of type string.
What am I doing wrong?