Vue.JS router-link params from ajax request












1















Im trying to create a router-link with vue and when I try to pass a parameter I receive from an AJAX request using axios. But at the moment I load the page i get the notice the parameter is missing and it shows up as undefined. How do i get around this?



<tr v-for="obj in fetched">
<td v-text="obj.isocode"></td>
<td v-text="obj.name"></td>
<td><router-link :to="{ name: 'str-route-masterdata-country-edit', params: { id: obj.id }}">Edit</router-link></td>
</tr>




export default {
name: "starlight-masterdata-country-index",
components: {StarlightTable},
data: function() {
return {fetched: }
},
mounted: function () {

let vm = this;

Axios.get('http://127.0.0.1:5000/masterdata/countries',
{crossDomain: true}
)
.then(function (response) {
// handle success
vm.fetched = response.data;
})
.catch(function (error) {
// handle error
//TODO: Add flash message to screen to show the api request failed
window.console.log(error);
});
},

}


Error message:



vue-router.esm.js?8c4f:16 [vue-router] missing param for named route "str-route-masterdata-country-edit": Expected "id" to be defined









share|improve this question

























  • How does the structure, you receive from axios, look like? Your template expects something like [{id:123}] Is this the case?

    – ssc-hrep3
    Nov 16 '18 at 21:37













  • What exactly is the error message: i get the notice the parameter is missing

    – Matt Morgan
    Nov 16 '18 at 22:15











  • @MattMorgan I have edited the post to include the exact error message the chrome console gives me. My apologies.

    – djkevino
    Nov 17 '18 at 16:28











  • @ssc-hrep3 Thanks, I accidentially used id instead of uuid. Just a bad on my part

    – djkevino
    Nov 17 '18 at 16:31
















1















Im trying to create a router-link with vue and when I try to pass a parameter I receive from an AJAX request using axios. But at the moment I load the page i get the notice the parameter is missing and it shows up as undefined. How do i get around this?



<tr v-for="obj in fetched">
<td v-text="obj.isocode"></td>
<td v-text="obj.name"></td>
<td><router-link :to="{ name: 'str-route-masterdata-country-edit', params: { id: obj.id }}">Edit</router-link></td>
</tr>




export default {
name: "starlight-masterdata-country-index",
components: {StarlightTable},
data: function() {
return {fetched: }
},
mounted: function () {

let vm = this;

Axios.get('http://127.0.0.1:5000/masterdata/countries',
{crossDomain: true}
)
.then(function (response) {
// handle success
vm.fetched = response.data;
})
.catch(function (error) {
// handle error
//TODO: Add flash message to screen to show the api request failed
window.console.log(error);
});
},

}


Error message:



vue-router.esm.js?8c4f:16 [vue-router] missing param for named route "str-route-masterdata-country-edit": Expected "id" to be defined









share|improve this question

























  • How does the structure, you receive from axios, look like? Your template expects something like [{id:123}] Is this the case?

    – ssc-hrep3
    Nov 16 '18 at 21:37













  • What exactly is the error message: i get the notice the parameter is missing

    – Matt Morgan
    Nov 16 '18 at 22:15











  • @MattMorgan I have edited the post to include the exact error message the chrome console gives me. My apologies.

    – djkevino
    Nov 17 '18 at 16:28











  • @ssc-hrep3 Thanks, I accidentially used id instead of uuid. Just a bad on my part

    – djkevino
    Nov 17 '18 at 16:31














1












1








1








Im trying to create a router-link with vue and when I try to pass a parameter I receive from an AJAX request using axios. But at the moment I load the page i get the notice the parameter is missing and it shows up as undefined. How do i get around this?



<tr v-for="obj in fetched">
<td v-text="obj.isocode"></td>
<td v-text="obj.name"></td>
<td><router-link :to="{ name: 'str-route-masterdata-country-edit', params: { id: obj.id }}">Edit</router-link></td>
</tr>




export default {
name: "starlight-masterdata-country-index",
components: {StarlightTable},
data: function() {
return {fetched: }
},
mounted: function () {

let vm = this;

Axios.get('http://127.0.0.1:5000/masterdata/countries',
{crossDomain: true}
)
.then(function (response) {
// handle success
vm.fetched = response.data;
})
.catch(function (error) {
// handle error
//TODO: Add flash message to screen to show the api request failed
window.console.log(error);
});
},

}


Error message:



vue-router.esm.js?8c4f:16 [vue-router] missing param for named route "str-route-masterdata-country-edit": Expected "id" to be defined









share|improve this question
















Im trying to create a router-link with vue and when I try to pass a parameter I receive from an AJAX request using axios. But at the moment I load the page i get the notice the parameter is missing and it shows up as undefined. How do i get around this?



<tr v-for="obj in fetched">
<td v-text="obj.isocode"></td>
<td v-text="obj.name"></td>
<td><router-link :to="{ name: 'str-route-masterdata-country-edit', params: { id: obj.id }}">Edit</router-link></td>
</tr>




export default {
name: "starlight-masterdata-country-index",
components: {StarlightTable},
data: function() {
return {fetched: }
},
mounted: function () {

let vm = this;

Axios.get('http://127.0.0.1:5000/masterdata/countries',
{crossDomain: true}
)
.then(function (response) {
// handle success
vm.fetched = response.data;
})
.catch(function (error) {
// handle error
//TODO: Add flash message to screen to show the api request failed
window.console.log(error);
});
},

}


Error message:



vue-router.esm.js?8c4f:16 [vue-router] missing param for named route "str-route-masterdata-country-edit": Expected "id" to be defined






javascript html vue.js vuejs2 vue-router






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 17 '18 at 16:27







djkevino

















asked Nov 16 '18 at 21:27









djkevinodjkevino

13615




13615













  • How does the structure, you receive from axios, look like? Your template expects something like [{id:123}] Is this the case?

    – ssc-hrep3
    Nov 16 '18 at 21:37













  • What exactly is the error message: i get the notice the parameter is missing

    – Matt Morgan
    Nov 16 '18 at 22:15











  • @MattMorgan I have edited the post to include the exact error message the chrome console gives me. My apologies.

    – djkevino
    Nov 17 '18 at 16:28











  • @ssc-hrep3 Thanks, I accidentially used id instead of uuid. Just a bad on my part

    – djkevino
    Nov 17 '18 at 16:31



















  • How does the structure, you receive from axios, look like? Your template expects something like [{id:123}] Is this the case?

    – ssc-hrep3
    Nov 16 '18 at 21:37













  • What exactly is the error message: i get the notice the parameter is missing

    – Matt Morgan
    Nov 16 '18 at 22:15











  • @MattMorgan I have edited the post to include the exact error message the chrome console gives me. My apologies.

    – djkevino
    Nov 17 '18 at 16:28











  • @ssc-hrep3 Thanks, I accidentially used id instead of uuid. Just a bad on my part

    – djkevino
    Nov 17 '18 at 16:31

















How does the structure, you receive from axios, look like? Your template expects something like [{id:123}] Is this the case?

– ssc-hrep3
Nov 16 '18 at 21:37







How does the structure, you receive from axios, look like? Your template expects something like [{id:123}] Is this the case?

– ssc-hrep3
Nov 16 '18 at 21:37















What exactly is the error message: i get the notice the parameter is missing

– Matt Morgan
Nov 16 '18 at 22:15





What exactly is the error message: i get the notice the parameter is missing

– Matt Morgan
Nov 16 '18 at 22:15













@MattMorgan I have edited the post to include the exact error message the chrome console gives me. My apologies.

– djkevino
Nov 17 '18 at 16:28





@MattMorgan I have edited the post to include the exact error message the chrome console gives me. My apologies.

– djkevino
Nov 17 '18 at 16:28













@ssc-hrep3 Thanks, I accidentially used id instead of uuid. Just a bad on my part

– djkevino
Nov 17 '18 at 16:31





@ssc-hrep3 Thanks, I accidentially used id instead of uuid. Just a bad on my part

– djkevino
Nov 17 '18 at 16:31












1 Answer
1






active

oldest

votes


















0














Already solved. Used the wrong property. Needed to be uuid instead of id..






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345633%2fvue-js-router-link-params-from-ajax-request%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Already solved. Used the wrong property. Needed to be uuid instead of id..






    share|improve this answer




























      0














      Already solved. Used the wrong property. Needed to be uuid instead of id..






      share|improve this answer


























        0












        0








        0







        Already solved. Used the wrong property. Needed to be uuid instead of id..






        share|improve this answer













        Already solved. Used the wrong property. Needed to be uuid instead of id..







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 17 '18 at 16:31









        djkevinodjkevino

        13615




        13615






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53345633%2fvue-js-router-link-params-from-ajax-request%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Tangent Lines Diagram Along Smooth Curve

            Yusuf al-Mu'taman ibn Hud

            Zucchini