odyright
I was running Angular 5 and Phoenix framework and I’m trying to send a POST request to Phoenix. i got 422 Unprocessable error

I have the following code:
enrollment.component.ts
saveEnrollment()
{
this.enrservice.saveEnrollment(this.enrollment)
.then(
(enrollment: Enrollment) => {
// Show the success message
this.snackBar.open('Enrollment success', 'OK', {
verticalPosition: 'top',
duration : 6000
});
});
}
enrollment.component.ts
saveEnrollment(enrollment: Enrollment)
{
return new Promise((resolve, reject) => {
this.http.post(API_URL, enrollment)
.subscribe((response: any) => {
resolve(response);
}, reject);
});
}
enrollment.model.ts
export class Enrollment {
id: number;
firstName: string;
lastName: string;
address: string;
city: string;
state: string;
postalCode: string;
constructor(enrollment?)
{
enrollment = enrollment || {};
/* this.id = enrollment.id || FuseUtils.generateGUID(); */
this.id = enrollment.id || '';
this.firstName = enrollment.firstName || '';
this.lastName = enrollment.lastName || '';
this.address = enrollment.address || '';
this.city = enrollment.city || '';
this.state = enrollment.state || '';
this.postalCode = enrollment.postalCode || '';
}}
and when i try to submit the form..i got that result:
[info] POST /api/enrollments
[debug] Processing with UmappWeb.EnrollmentController.create/2
Parameters: %{"address" => "", "city" => "", "firstName" => "", "id" => "",
"lastName" => "", "postalCode" => "", "state" => ""}
Pipelines: [:api]
[info] Sent 422 in 0┬Ás
Not sure what I’m doing wrong. please i need advise or help! thank you
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Latest Phoenix Threads
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
idi527
this.enrollmentseems to be{}for some reason.422 is probably returned because of errors in ecto changeset? Didn’t know phoenix does this automatically. Do you have any
action_fallbacks forUmappWeb.EnrollmentController?odyright
I don’t have fallback actions, but for this case as phoenix is serving as an API, i used “Cors_plug” .
enrollment.controller.exrouter.ex.odyright
Harrrrr, it seems the problem is the angular’s part..when i investigated the request payload part shown blank data for each input sent to the server(phoenix framework) but i don’t know where i’m wrong /////

odyright
anyone .. have an idea?
idi527
You would need to provide more information, probably. Or try to trace this
enrollmentobject up to its creation, and see why it is empty.odyright
As you said @idi527 i traced it and i fixed the code responsible of that ..it was “client-side”. But the other error i got is 400 Bad request and it seems some parameters are missing in my code, but which i don’t know.
any help.?
outlog
the error message looks pretty good - "could not find matching App.Controller.create clause..
how does your create function look like in the controller?
odyright
@outlog
amnu3387
Just copy the line from the error page, below “The request parameters are:”
Paste that into a text editor, now take your
createfunction head parameters and paste it below that,%{"enrollment" => enrollment_params}. Can they match?odyright
@amnu3387 like that..?
%{“address” => “s”, “city” => “s”, “firstName” => “f”, “lastName” => “s”, “postalCode” => “s”, “state” => “s”}
%{“enrollment” => enrollment_params}