How to Get Data From mysql using VueJs and PHP

How to Get Data From mysql using VueJs and PHP

In this Post We Will Explain About is How to Get Data From mysql using VueJs and PHP With Example and Demo.Welcome on infinityknow.com – Examples, The best For Learn web development Tutorials,Demo with Example! Hi Dear Friends here u can know to How to get data from mysql using VueJS and PHPExample

READ :  Remove duplicate values using PHP Example

In this post we will show you Best way to implement how to fetch data from database using Vuejs in html, hear for how to fetch data from database using Vuejswith Download .we will give you demo,Source Code and examples for implement Step By Step Good Luck!.

Syntex of Vuejs Fetch Data

[php]
new Vue({
el: ‘#liveapp’,

data: {
data_msg: []
},

ready: function() {
this.get_fetchmsg();
},

methods: {
get_fetchmsg: function() {
this.$http.get(‘/customers/list/data’, function(data_msg) {
alert(data_msg);
this.$set(‘data_msg’, data_msg);
});
}
}
});
[/php]

How to get data from mysql using Vuejs and PHP

[php]
// Simple GET request
this.$http({url: ‘http://infinityknow.com/api/index.php’, method: ‘GET’}).then(function (result) {
//Simple success callback
}, function (result) {
//Simple error callback
});
[/php]

READ :  Vue Js Get Current Date Time Example

Data fetching from database using laravel and vuejs

index.html
[php]
var data = [{
header_title: ‘data live24u’,
long_desc: ‘This is a infinityknow.com data.’
}, {
header_title: ‘404Error’,
long_desc: ‘404 Page not found.’
}];
new Vue({
el: ‘#liveapp’,
data: {
data_msg: []
},
ready: function() {
this.get_fetchmsg();
},
methods: {
get_fetchmsg: function() {
var self = this;
// simulate the ajax request
setTimeout(function(){
self.data_msg = data;
}, 1000);
}
}
});
[/php]

index.js
[php]
https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.20/vue.min.js

Index Header Title Long Description Action
{{$index+1}} {{content.header_title}} {{content.long_desc}}

[/php]

Example

I hope you have Got What is how to fetch data from database using Vuejs in mvc And how it works.I would Like to have FeadBack From My Blog(infinityknow.com) readers.Your Valuable FeadBack,Any Question,or any Comments abaout This Article(infinityknow.com) Are Most Always Welcome.

READ :  Overview of Implement Stack Algorithm in C#.Net

Leave a Comment