Jump to content

Get un produit avec son ID en Ajax


Recommended Posts

Bonjour,

 

J'aimerais savoir comment je pouvais récupérer un produit et ses attributs en faisant une requète javascript avec Ajax par exemple.

 

$.ajax({
    type: 'POST',
    headers: { "cache-control": "no-cache" },
    url: baseUri + '?rand=' + new Date().getTime(),
    async: true,
    cache: false,
    dataType : "json",
    data: 'controller=product&product_id=xxx&ajax=true&token=' + static_token,
    success: function(jsonData){
        //mon produit
    }
});

Bien entendu ce code me retourne "null" je n'ai trouvé aucun exemple, j'aimerais bien un petit coup de main :)

Merci beaucoup

Edited by MacMah0n (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...