Skip to content

Tag: javascript

Updating a rails record with vanilla javascript

Is it possible to update a rails record with vanilla javascript without intercepting the data and converting it to a hash in the controller? Here is my code: If I just send the data without stringifying it, it shows up in the rails controller at user: [object, object]. In the update action I update the params…

fetch() is spamming my API with thousands of requests

I have the following function which gets an image from my API: It did work, but now when I run the function it spams the API as the console gets flooded with “Fire” and my server gets thousands upon thousands of requests. Answer You named the function fetch so it overwrites (or shadows, depending …

Javascript Regex to match everything after 2nd hyphen

I’m trying to find a JavaScript regex pattern to match on everything after the 2nd instance of the hyphen – Here is an example: In this case, I’d like to only match the address so the desired variable to store would be: These characters 1 and H6205636 can change in length so I don’t th…