I'm using Angular to make a database entry, I get the data from my inputs I put into an object and I transform it into a JSON and I send it by post, but it happens that my JSON is cut and I do not do the minimum idea of why.
var meuJson = angular.toJson(meuObjeto);
$http({
method: 'POST',
url: 'http://url/arquivo.php',
data: {
'data': meuJson
}
})
.success(function (data){
console.log(data);
})
My JSON is appearing like this.
[
{
"uuid":"56456456456456456456465456"
},
{
"store_name":"",
"store_email":"",
"store_facebook":"",
"contact_name":"Juca",
"contact_email":"[email protected]",
"contact_facebook":"http://localho
I gave a console.log()
to Json when I get it and show it, then I show the answer, see the image that is better understood: