Skip to content
Advertisement

Get an ID just created without reloading the page

Here is a div that I append in AJAX with a script (at the bottom of the TWIG file) :

JavaScript

If I then click on the freshly appended button, it returns an error because the ID “vote.id” is still 0 until I reload the page and the ID gets found…

Is there a way to trigger the for loop without reloading the page to get the ID directly after its creation? Is it linked with “async” or any “ready” function?

EDIT :

The script that appends the div #deleteVote when I vote :

JavaScript

The #deleteVote that gets appended, with the url of the “deleteVote” function (which needs to know the ID of the vote to delete) :

JavaScript

Advertisement

Answer

As I’ve mentioned in the comments, you can’t pass a javascript directly to twig, as twig is rendered serverside. One way to solve this is to calculate all the path beforehand:

JavaScript

Now you can access the path directly in javascript

JavaScript

You could also make an extra request to a controller to generate the path, but this would mean you would need to pass all the variables, e.g. slug, app.user.id, …

More information on how to generate a path inside a controller can be found here

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement