Giter VIP home page Giter VIP logo

Comments (4)

cigolpl avatar cigolpl commented on June 10, 2024

Do you mean relevancy algorithms ? ItemsJS can integrate with any JS fulltext search so you can configure results orders as much as you want

from itemsjs.

Bartaf83 avatar Bartaf83 commented on June 10, 2024

Nope, I mean that the comparaison would use an "include" instead of the standard equality between strings, a "Starts With" or other operators that we can see for example in this module's feature options when making the search

from itemsjs.

cigolpl avatar cigolpl commented on June 10, 2024

Could you provide an example i.e. input, your expected output and some description ?

If you need filters options you can just use filter function:

var result = itemsjs.search({
  query: 'shoes',
  filter: function(item) {
    return item.rating >= 8 && item.reviews_count >= 200;
  }
});

from itemsjs.

Bartaf83 avatar Bartaf83 commented on June 10, 2024

Well, thanks , it's kinda what i've been looking for.

So i've been trying with the filter function , at first i made this first stackblitz in which I pass the data and the config and then I make the filtering and I'm getting two items as result in the console:
image

But then I forked that same demo to make this second stackblitz in which I just inverted the boolean returned by the filter function (line 108 in the code)
and I expected I would get the opposite result (which means the items which weren't part of the result in the first demo)
but i got an empty array as items in the searchResult
image

By doing that I'm trying to apply the NOT operator to the result I got at first but it's not working
Can you please tell me why it's not working as expected ?

from itemsjs.

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.