function movieReviews() {
let url = 'http://spartacodingclub.shop/post'
fetch(url).then(res => res.json()).then((data) => {
let rows = data['articles']
let image = rows[0]['image']
$('#moviesPic').attr('src',image)
});
}
openApi로 받아온 이미지로 바뀐다