Quantcast
Channel: Active questions tagged ruby - Stack Overflow
Viewing all articles
Browse latest Browse all 4636

Why am I getting a CSRF token authenticity error when trying to submit a form_with through my stimulus controller?

$
0
0

I connected a form_with with my stimulus controller, then added the form itself as a target and added an action to point to my stimulus controller's submit function. When I then get the form and try to form.submit() I get this error that reads:

Can't verify CSRF token authenticity.

My form_with html tag:

<%= form_with(model: @example, data: { controller: "nested-form", nested_form_target: "form", action: "submit->nested-form#submit" }, local: false) do |form| %>

My static targets:

static targets = ["skillsContainer","communitiesContainer","template","form",  ];

My submit function:

submit(event) {    event.preventDefault();    const form = this.formTarget;    form.submit();}

I tried adding a hidden field in the form with the token:<%= hidden_field_tag :authenticity_token, form_authenticity_token %>

Also tried to add the action directly to the form.submit tag

<%= form.submit "Save Sprint Goal", class: "btn btn-primary", style: "border-radius: 10px;", action: "click->nested-form#submit"%>

I have the CSRF metatag in my layout and I'm succesfully sending requests in other stimulus controllers using the CSRF.


Viewing all articles
Browse latest Browse all 4636

Latest Images

Trending Articles



Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>