Changing value in JavaScript code/tag with Vue.js
I am stuck in an issue but I am not sure how to put this through. But I will try to explain.
When the page is loaded then I have this piece of code which is using jinja based place holder.
<div class="ui container">
<div class="ui tiny blue header">{{ i.ProductName }}</div>
<h5 class="ui grey header">{{ i.Category }}</h5>
<h5 class="ui red header">₹{{ i.ActualPrice }} <s>₹{{ i.StrikedPrice }}</s> </h5>
<script type="text/javascript">var lastid = "{{lid}}"</script>
</div>
The above code is rendering fine and I am also getting the lastid to which I am making this as my global variable.
Now what happens is user clicks on "Load More" like so
<button v-on:click="loadmore" class="fluid ui button">Load More</button>
It then triggers a vue.js function like so.
<script>
var app5 = new Vue({
el: '#app-5',
delimiters: ['[[',']]'],
data: {
message: ,
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+ld)
.then(response => {this.message.push(...response.data);});
}
}
});
</script>
vue.js pushes my data in a mentioned ui container as shown below.
<div class="ui container">
<div class="ui tiny blue header"> [[i.ProductName]]</div>
<h5 class="ui grey header">[[i.Category]]</h5>
<h5 class="ui red header">₹[[i.ActualPrice]] <s>₹[[i.StrikedPrice]]</s> </h5>
<script type="text/javascript">lastid = [[lid]]</script>
</div>
Notice there is a small javascript tag. The lastid which i am getting is not updating the global variable. The lastid should be updated with the latest ID. Is there a solution to this problem or perhaps any recommendation to change the logic.
javascript vue.js jinja2
add a comment |
I am stuck in an issue but I am not sure how to put this through. But I will try to explain.
When the page is loaded then I have this piece of code which is using jinja based place holder.
<div class="ui container">
<div class="ui tiny blue header">{{ i.ProductName }}</div>
<h5 class="ui grey header">{{ i.Category }}</h5>
<h5 class="ui red header">₹{{ i.ActualPrice }} <s>₹{{ i.StrikedPrice }}</s> </h5>
<script type="text/javascript">var lastid = "{{lid}}"</script>
</div>
The above code is rendering fine and I am also getting the lastid to which I am making this as my global variable.
Now what happens is user clicks on "Load More" like so
<button v-on:click="loadmore" class="fluid ui button">Load More</button>
It then triggers a vue.js function like so.
<script>
var app5 = new Vue({
el: '#app-5',
delimiters: ['[[',']]'],
data: {
message: ,
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+ld)
.then(response => {this.message.push(...response.data);});
}
}
});
</script>
vue.js pushes my data in a mentioned ui container as shown below.
<div class="ui container">
<div class="ui tiny blue header"> [[i.ProductName]]</div>
<h5 class="ui grey header">[[i.Category]]</h5>
<h5 class="ui red header">₹[[i.ActualPrice]] <s>₹[[i.StrikedPrice]]</s> </h5>
<script type="text/javascript">lastid = [[lid]]</script>
</div>
Notice there is a small javascript tag. The lastid which i am getting is not updating the global variable. The lastid should be updated with the latest ID. Is there a solution to this problem or perhaps any recommendation to change the logic.
javascript vue.js jinja2
add a comment |
I am stuck in an issue but I am not sure how to put this through. But I will try to explain.
When the page is loaded then I have this piece of code which is using jinja based place holder.
<div class="ui container">
<div class="ui tiny blue header">{{ i.ProductName }}</div>
<h5 class="ui grey header">{{ i.Category }}</h5>
<h5 class="ui red header">₹{{ i.ActualPrice }} <s>₹{{ i.StrikedPrice }}</s> </h5>
<script type="text/javascript">var lastid = "{{lid}}"</script>
</div>
The above code is rendering fine and I am also getting the lastid to which I am making this as my global variable.
Now what happens is user clicks on "Load More" like so
<button v-on:click="loadmore" class="fluid ui button">Load More</button>
It then triggers a vue.js function like so.
<script>
var app5 = new Vue({
el: '#app-5',
delimiters: ['[[',']]'],
data: {
message: ,
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+ld)
.then(response => {this.message.push(...response.data);});
}
}
});
</script>
vue.js pushes my data in a mentioned ui container as shown below.
<div class="ui container">
<div class="ui tiny blue header"> [[i.ProductName]]</div>
<h5 class="ui grey header">[[i.Category]]</h5>
<h5 class="ui red header">₹[[i.ActualPrice]] <s>₹[[i.StrikedPrice]]</s> </h5>
<script type="text/javascript">lastid = [[lid]]</script>
</div>
Notice there is a small javascript tag. The lastid which i am getting is not updating the global variable. The lastid should be updated with the latest ID. Is there a solution to this problem or perhaps any recommendation to change the logic.
javascript vue.js jinja2
I am stuck in an issue but I am not sure how to put this through. But I will try to explain.
When the page is loaded then I have this piece of code which is using jinja based place holder.
<div class="ui container">
<div class="ui tiny blue header">{{ i.ProductName }}</div>
<h5 class="ui grey header">{{ i.Category }}</h5>
<h5 class="ui red header">₹{{ i.ActualPrice }} <s>₹{{ i.StrikedPrice }}</s> </h5>
<script type="text/javascript">var lastid = "{{lid}}"</script>
</div>
The above code is rendering fine and I am also getting the lastid to which I am making this as my global variable.
Now what happens is user clicks on "Load More" like so
<button v-on:click="loadmore" class="fluid ui button">Load More</button>
It then triggers a vue.js function like so.
<script>
var app5 = new Vue({
el: '#app-5',
delimiters: ['[[',']]'],
data: {
message: ,
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+ld)
.then(response => {this.message.push(...response.data);});
}
}
});
</script>
vue.js pushes my data in a mentioned ui container as shown below.
<div class="ui container">
<div class="ui tiny blue header"> [[i.ProductName]]</div>
<h5 class="ui grey header">[[i.Category]]</h5>
<h5 class="ui red header">₹[[i.ActualPrice]] <s>₹[[i.StrikedPrice]]</s> </h5>
<script type="text/javascript">lastid = [[lid]]</script>
</div>
Notice there is a small javascript tag. The lastid which i am getting is not updating the global variable. The lastid should be updated with the latest ID. Is there a solution to this problem or perhaps any recommendation to change the logic.
javascript vue.js jinja2
javascript vue.js jinja2
edited Nov 20 '18 at 13:49
wanttobeprofessional
1,03931323
1,03931323
asked Nov 20 '18 at 13:06
fear_matrixfear_matrix
1,99863250
1,99863250
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You need to add ld
to your app data and update it on response from axios:
data: {
message: ,
ld: 0, // default id you want to start it from
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+this.ld)
.then(response => {
const messages = ...response.data;
this.message.push(messages);
this.ld = messages.pop().id;
});
}
}
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53393669%2fchanging-value-in-javascript-code-tag-with-vue-js%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
You need to add ld
to your app data and update it on response from axios:
data: {
message: ,
ld: 0, // default id you want to start it from
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+this.ld)
.then(response => {
const messages = ...response.data;
this.message.push(messages);
this.ld = messages.pop().id;
});
}
}
add a comment |
You need to add ld
to your app data and update it on response from axios:
data: {
message: ,
ld: 0, // default id you want to start it from
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+this.ld)
.then(response => {
const messages = ...response.data;
this.message.push(messages);
this.ld = messages.pop().id;
});
}
}
add a comment |
You need to add ld
to your app data and update it on response from axios:
data: {
message: ,
ld: 0, // default id you want to start it from
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+this.ld)
.then(response => {
const messages = ...response.data;
this.message.push(messages);
this.ld = messages.pop().id;
});
}
}
You need to add ld
to your app data and update it on response from axios:
data: {
message: ,
ld: 0, // default id you want to start it from
},
methods: {
loadmore: function () {
axios.get('http://127.0.0.1:5000/api/products/'+this.ld)
.then(response => {
const messages = ...response.data;
this.message.push(messages);
this.ld = messages.pop().id;
});
}
}
answered Nov 20 '18 at 14:23


DanielDaniel
563114
563114
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53393669%2fchanging-value-in-javascript-code-tag-with-vue-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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