agent-backend/contracts/JSONExample/JSONExample.yjs
2021-09-26 12:49:24 +08:00

18 lines
442 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

contract JSONExample{
@Description("计算JSON数组之和参数示例:[{\"score\":20},{\"score\":20}]")
export function calculate(arg){
point = JSON.parse(arg);
var s = 0;
print(point[0].score);
print(point.length);
for (var i=0;i<point.length;i++){
s+=point[i].score/1.0;
}
var result = {
};
result.totalScore = s;
result.count = pointer.length;
return JSON.stringify(result);
}
}