Stay organized with collections
Save and categorize content based on your preferences.
Asynchronously retrieves the value of this object from the server and passes it to the provided callback function.
Usage
Returns
Image.evaluate(callback)
Argument
Type
Details
this: computedobject
ComputedObject
The ComputedObject instance.
callback
Function
A function of the form function(success, failure), called when the server returns an answer. If the request succeeded, the success argument contains the evaluated result. If the request failed, the failure argument will contains an error message.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["`Image.evaluate` fetches the computed object's value from the server."],["The server's response, whether successful or containing an error, is passed to a user-defined callback function."],["This function is structured to handle both success (with the result) and failure (with an error message) scenarios."]]],["The `Image.evaluate(callback)` method asynchronously fetches a `ComputedObject`'s value from the server. It takes a callback function as an argument. This function receives two arguments: `success` (the evaluated result upon success) and `failure` (an error message upon failure). The method retrieves the value of the `ComputedObject` and passes it to the callback function. No value is returned from this method.\n"]]