Hi there!
Here’s a newbie issue: I’m struggling to get an image url - I’m sure it’s very simple but I’m not very familiar with the syntax.
I’ve tried a few different things but I can’t seem to get the ‘url’ parameter from my image field.
records.forEach(function(record) {
var $mealInfo = $('<div>');
$mealInfo.append($('<div>').text(record.get('Photo')));
$mealInfo.append($('<h3>').text(record.get('Name')));
$('#meal').append($mealInfo);
});
Thanks!!