18 lines
291 B
JavaScript
18 lines
291 B
JavaScript
var $ = jQuery;
|
|
|
|
function displayReviews(reviews) {
|
|
|
|
}
|
|
|
|
function loadReviews () {
|
|
$.ajax({
|
|
url: "http://localhost:8000/api/postings/",
|
|
method: "GET"
|
|
}).done(function (response) {
|
|
displayReviews(response);
|
|
}).fail(function (response) {
|
|
console.log(response);
|
|
})
|
|
}
|
|
|
|
loadReviews(); |