Get SharePoint List Item And Apply Multiple Properties Using Custom Filter

 
Step 1 - Create .JS file custom code, as shown below.
 
var spApp = angular
.module("spApp", [])
.controller("viewItemController", function ($scope, $http) {
var url = _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getByTitle('Product%20Sales')/items";
$http(
{
method: "GET",
url: url,
headers: { "accept": "application/json;odata=verbose" }
}
).success(function (data, status, headers, config) {
var dataResults=data.d.results;
$scope.contacts = dataResults;
}).error(function (data, status, headers, config) {
});
})
 
Step 2 - After creating .JS file, upload it into our SharePoint library then create .html file with the steps given below.
 
<html>
<head>
<script type="text/javascript" src="/SiteAssets/angular.min.js"></script>
<script type="text/javascript" src="SiteAssets/angularGet.js"></script>
</head>
<body>
<h3>View Contacts</h3>
<hr/>
<div ng-app="spApp">
<div ng-controller="viewItemController">
<input type="text" placeholder="searchProductItem" ng-model="searchText.Product"/>
<input type="text" placeholder="searchSalesTargetItem" ng-model="searchText.Sales_x0020_Target"/>
<input type="checkbox" ng-model="exactMatch"/>Exact Match
<br/><br/>
<table>
<tr>
<th>Product</th>
<th>Total Sales</th>
<th>Sales Target</th>
</tr>
<tr ng-repeat="contact in contacts|filter:searchText:exactMatch">
<td>{{contact.Product}}</td>
<td>{{contact.Total_x0020_Sales}}</td>
<td>{{contact.Sales_x0020_Target}}</td>
</tr>
<br />
</table>
</div>
<hr />
</body>
</html>
 
Step 3 - After completion of .html file and uploading into our SharePoint library, insert one content editor Web part any SharePoint page and ref this .html file into that Web part. Now, we can get the method given below.
 
 
Step 4 - From the above image, we can search two items --  product and sales target items only. If we select check box and enter exact data in both the text boxes, the result will be displayed.
 
Step 5 - If the data does not match in both the items, when we select Exact Match option, the result will be shown empty.
 
Note

If anything is required from my side, please comment.