The AND LIKE query is now working!

This commit is contained in:
2024-04-07 17:26:48 -04:00
parent bde3229270
commit 1ae1a3d989
3 changed files with 44 additions and 18 deletions

View File

@@ -842,6 +842,7 @@ export let get_ae_obj_li_for_obj_id_crud = async function get_ae_obj_li_for_obj_
// NOTE: This is a JSON object that needs to be safely converted to a string for the params. This is used for the search endpoint.
// Max characters for a GET request is 2083. This is a limitation of the browser (Microsoft IE and Edge).
console.log('JSON Object:', params_json);
console.log(JSON.stringify(params_json));
// NOTE: "jp" stands for "JSON Params"
params['jp'] = encodeURIComponent(JSON.stringify(params_json));
if (params['jp'].length > 2083) {