Я создал WEBAPI в проекте и использовал этот API в другом проекте.Другой проект может получить API, если он отображается на HTML-странице, но не может отобразить API в представлении контроллера.Пожалуйста, помогите!
Below code is working in HTML page but when I copied same code inside a View of a Controller then its not working .
Help !!!!!!
Вот скрипт enter code here
$ (документ) .ready (function () {
//Close the bootstrap alert
$('#linkClose').click(function () {
$('#divError').hide('fade');
});
// Save the new user details
$('#btnRegister').click(function () {
$.ajax({
url: 'http://localhost:54264/api/account/register',
method: 'POST',
data: {
email: $('#txtEmail').val(),
password: $('#txtPassword').val(),
confirmPassword: $('#txtConfirmPassword').val()
},
success: function () {
$('#successModal').modal('show');
},
error: function (jqXHR) {
$('#divErrorText').text(jqXHR.responseText);
$('#divError').show('fade');
}
});
});
});
</script>
Ниже приведена ошибка, с которой я сталкиваюсь
jquery-3.3.1.min.js: 2 POST http://localhost:54264/api/account/register 400 (неверный запрос)