我遇到一個問題,需要使用條件運算子字串搜尋 JSON 物件。
JSON 物件看起來像
let Data = [ {Application: 'APIM', Owner: 'Vande Mataram','Customer Code': 'DJLFKASJF',Environment: 'Dev',OS: 'Linux',Region: 'EU','TEAM ': 'DemoTestCOE'}, {TEAM: 'BCC'}, {Team: 'DemoTestCOE','Customer Code': 'DJLFKASJF',Owner: 'Vande Mataram',Environment: 'Prod',Region: 'EU',Application: 'Ui-Path',OS: 'Windows'}, {Application: 'MGMT','Customer Code': 'DJLFKASJF', os: 'Windows','Owner ': 'Vande Mataram', Region: 'East US 2',Team: 'DemoTestCOE',Environment: 'MGMT' }, {Application: 'PIER',Owner: 'Govindarajulu Balaji',OS: 'Windows',Region: 'DemoTestCOE', Environment: 'QA'} ]
以及如下所示的條件字串..
let condition = '"Owner": "Vande Mataram" AND ("Application": "APIM" AND "Customer Code": "DJLFKASJF") OR ("Owner": "Vande Mataram" AND "Customer Code": "DJLFKASJF") OR "Owner": "Vande Mataram"'
沒有網路的運氣...如何實現這個,我無法將其帶到 SQL Server,因為它需要在 javascript 中完成。
我在網路上搜尋了將條件字串拆分為按運算子(AND/OR)拆分的數組,並在json資料物件中進行一一搜索,但是每個請求的條件字串都不同。並且努力正確實施運算符(AND/OR)。我不確定這是最好的主意
我需要幫助如何解決這個問題以滿足使用多個嵌套括號提供的任何類型的條件。
謝謝
Data
只是一個物件數組,因此您可以使用Array.filter
。