Uncaught TypeError: $.ajax(...).success is not a function
Solution 1:
The call to ajax should look like:
$.ajax({
type: "GET",
url: "/api/rooms",
success: function (rooms) {
}
});
You don't method chain the success function, it is one of the entries in the dictionary argument.
Solution 2:
Your code is correct there is no problem with it
but you might be including the new jquery library which doesn't allow .success() method
for newer version of jquery use
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$.ajax({
type: "GET",
url: "/api/rooms",
success: function (rooms) {
}
});
</script>
and if you are using old jquery the .success() method would run without any problem
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$.ajax({
url: "/api/rooms",
method: "GET",
data: {'datavar': datavalue}
}).success(function (rooms) {
console.log("successfully run ajax request..." + rooms);
}).done(function () {
console.log("I am from done function");
}).fail(function () {
console.log("I am from fail function.");
}).always(function () {
console.log("I am from always function");
});
</script>