Skip to main content
10-Marble
July 13, 2021
Solved

Can't understand why service is asking for datashape for output?

  • July 13, 2021
  • 1 reply
  • 896 views

Hi I'm trying to make one service where I was using following code

service output should be boolean but when service is run it ask for datashape to show output. Please help me to understand this if I'm missing something

 

SERVICE CODE

SERVICE INPUTS

a --> number

b --> number

c--> number

formula --> string

 

 

try{
var formu = formula;
var formulaArray = formu.split("");
var check = formulaArray.forEach(function(value){
if(value === "a"||"b"||"c"||"+"||"-"||"/"||"*"||")"||"("){
return true;
} else{
return false;
}
});
logger.debug("formulaMaker "+ check);
// function evil(fn) {
// return new Function('return ' + fn)();
//}
//var calculation = evil(formula);
result = check;
//
//
//
//
//
}
catch(err){
logger.error(err);
}

 

Best answer by PaiChung

It might be resolving into an error and you aren't giving a result in the catch.

1 reply

PaiChung22-Sapphire IAnswer
22-Sapphire I
July 13, 2021

It might be resolving into an error and you aren't giving a result in the catch.