Bueno este es mi primer post aquii y mi primer problema.
Estoy Generando un JSON con json_encode() en php y cuando voy a capturar el json en javascript con JSON.parse(); (tambien me sale igual con jquery = $.parseJSON())me sale el error "
Uncaught SyntaxError: Unexpected token o"
aqui el codigo que estoy usando.
Código:
$.ajax({
type: 'GET',
url: 'resource.php',
success: function( data ){
var datos = JSON.parse(data);
var html = '<img src="'+datos.thumb+'" style="opacity: 0.33;">';
$('.background').html( html );
$('#video').attr('poster', datos.thumb);
$('video').html('<source src="'+datos.file+'" type="video/mp4" />');
$('.tran').html(datos.title);
}
});
Aquii el JSON generado
Código HTML:
{"thumb":"http://localhost/imagen.jpg","file":"http://localhost/el-perro-valiente.mp4","title":"El perro valiente"}
Le agradeceria si me pueden ayudar en mi problema por favor, ya llevo horas intentando que esto funcione