Skip to content

查询文档


search()

根据索引查询内容,需要传入两个参数。EDb() 可以传入一个数据源的名称,默认是第一个数据源

  • @param index 索引
  • @param body 查询结构 (index: string, body: DBOBJECT)
const esConfig = {
  host: '127.0.0.1',
  port: 9200
}

import { EDb } from 'think-ts-db'
export default defineEventHandler(async (event) => {
    const goods = await EDb(esConfig).search('goods', {
        query: {
            match: {
                name: '李四'
            }
        }
    })
    return goods
})
const esConfig = {
  host: '127.0.0.1',
  port: 9200
}

import { EDb } from 'think-ts-db'
export default defineEventHandler(async (event) => {
    const goods = await EDb(esConfig).search('goods', {
        query: {
            match: {
                name: '李四'
            }
        }
    })
    return goods
})

备案号:冀ICP备20015584号-2