aligredo
Hello there,
I have a simple :create action in my controller and everytime I try submitting the form with invalid data it redirects to the :index route without showing any error_tag
here is my code:
controller
def new(conn, _params) do
changeset = Accounts.change_student(%Student{})
render(conn, "new.html", changeset: changeset)
end
def create(conn, %{"student" => student_params}) do
case Accounts.create_student(student_params) do
{:ok, student} ->
conn
|> put_flash(:info, "Welcome aboard, You Should Recieve A Confirmation Mail Soon!")
|> redirect(to: Routes.student_path(conn, :show, student))
{:error, %Ecto.Changeset{} = changeset} ->
render(conn, "new.html", changeset: changeset)
end
end
Changeset:
def changeset(student, attrs) do
student
|> cast(attrs, [:username, :password, :firstName, :lastName, :birthdate, :gender, :email, :uniID])
|> validate_required([:username, :password, :firstName, :lastName, :birthdate, :gender, :email, :uniID])
|> unique_constraint(:username)
|> unique_constraint(:email)
end
Form Templae:
<%= form_for @changeset, @action, fn f -> %>
<%= if @changeset.action do %>
<div class="alert alert-danger">
<p>Oops, something went wrong! Please check the errors below.</p>
</div>
<% end %>
<%= label f, :username %>
<%= text_input f, :username %>
<%= error_tag f, :username %>
<%= label f, :password %>
<%= password_input f, :password %>
<%= error_tag f, :password %>
<%= label f, :firstName %>
<%= text_input f, :firstName %>
<%= error_tag f, :firstName %>
<%= label f, :lastName %>
<%= text_input f, :lastName %>
<%= error_tag f, :lastName %>
<%= label f, :birthdate %>
<%= date_select f, :birthdate %>
<%= error_tag f, :birthdate %>
<%= label f, :gender %>
<%= select f, :gender, ["Male", "Female", "Other", "Rather Not Specify"] %>
<%= error_tag f, :gender %>
<%= label f, :email %>
<%= text_input f, :email %>
<%= error_tag f, :email %>
<%= label f, :uniID %>
<%= text_input f, :uniID %>
<%= error_tag f, :uniID %>
<div>
<%= submit "Submit" %>
</div>
<% end %>
UPDATE: I noticed that it also does not insert when the data is valid so it a problem with the DB I think, can you help me with that?
Thanks in advance!
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
Your original issue sounds like the changeset isn’t getting an
actionset on it; can you post yourAccounts.create_studentfunction?aligredo
yes, sure. Here you go
stefanchrobot
Can you show us the schema and DB migration as well? One thing that caught my eye was the unusual naming:
firstName. Is this aligned with the DB definition?Can you try creating the student from IEx session?
aligredo
yes sure,
Schema:
Migration:
iex session output:
stefanchrobot
I’m no expert in Phoenix, but shouldn’t this point to a correct route instead of
@action? What’s the value of the@actionassign?LostKobrakai
The phoenix generators create
new.html.eexandedit.html.eex, which both renderform.html.eexsetting@actionto an appropriate value.aligredo
exactly, here is it
stefanchrobot
Makes sense, but I’m out of ideas then. I’m not sure you’re posting the complete code, since there seems to be some missing parts (like password hashing). Do you happen to have any plugs (auth?) that would redirect the user?
aligredo
Not yet I’m just setting up the accounts context, I think the problem is with my
router.exnot with validationscheck this New Topic I added my router code there.
Thank you so much!