SwekAap Posted March 23, 2019 Share Posted March 23, 2019 Hello, i'm trying to get the character id from an <a> tag and send it to the server so when i click the button it will send that id to the server. Currently i got this in the login.html <b v-for="character in characters"> <a class="link-button link-button_margin1 link-button_theme-orange transition-02 hover" v-bind:char_id="character.id" @click="login" v-if="characters">{{ character.name }}</a> </b> And the "login" function to send it to the server is here login: function () { mp.trigger("cMisc-CallServerEvent", "sLogin-TryLoginWithoutCode", this.char_id); } This.char_id does not work however and will result into my server crashing. I want to send the "character.id" to the server. Thanks in advance. Link to comment Share on other sites More sharing options...
SwekAap Posted March 23, 2019 Author Share Posted March 23, 2019 I've fixed it myself.. Solution: <b v-for="character in characters"> <a class="link-button link-button_margin1 link-button_theme-orange transition-02 hover" @click="login(character.id)" v-if="characters">{{ character.name }}</a> </b> login: function (char_select) { mp.trigger("cMisc-CallServerEvent", "sLogin-TryLoginWithoutCode", char_select); } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now