Giter Site home page Giter Site logo

AJAX example about autocomplete HOT 4 CLOSED

jparadaa avatar jparadaa commented on June 6, 2024
AJAX example

from autocomplete.

Comments (4)

kraaden avatar kraaden commented on June 6, 2024

Hi @jparadaa

Here I created an example for you how to use it with an AJAX backend:

https://jsbin.com/nevekicala/edit?html,js,output

from autocomplete.

jparadaa avatar jparadaa commented on June 6, 2024

Hi @kraaden

I appreciate your answer, but I need a little more help please, this is my code I am trying, but I get "weird" results, it doesn't always return full results or if I type a product description that I know exists, it doesn't locate it.

<input type="text" id="producto" placeholder="buscar producto">

<script>
 var input = document.getElementById("producto");

 function callback(text, update) {					
    const data = {
        term: text
    };

    fetch('listProductos', {
        method: 'POST',
        headers: {
            'Content-Type': 'application/json'
        },
        body: JSON.stringify(data)
    })
    .then(res => {
        // Muestra la respuesta completa en la consola para depuración
        console.log("Respuesta de la API:", res);
        return res.json();
    })
    .then(json =>
        json.map(item =>
            ({
                label: item.descripcion,
                value: item.id
            }))
            .filter(item => item.value.toLowerCase().includes(text))
    )
    .then(update);
}

 autocomplete({
    input: input,
    fetch: callback,
    onSelect: function (item) {
        input.value = item.label;
    }
});

</script>

Can you please see if I am doing something wrong.

I appreciate your help.

Regards,
Javier

from autocomplete.

kraaden avatar kraaden commented on June 6, 2024

I suggest the field should be called description but in your case it's called descripcion

from autocomplete.

jparadaa avatar jparadaa commented on June 6, 2024

sorry, I don't understand

from autocomplete.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.