ee.Image.evaluate
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เรียกค่าของออบเจ็กต์นี้จากเซิร์ฟเวอร์แบบไม่พร้อมกันและส่งไปยังฟังก์ชันเรียกกลับที่ระบุ
การใช้งาน | การคืนสินค้า |
---|
Image.evaluate(callback) | |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
ดังนี้ computedobject | ComputedObject | อินสแตนซ์ ComputedObject |
callback | ฟังก์ชัน | ฟังก์ชันของรูปแบบ function(success, failure) ซึ่งจะเรียกใช้เมื่อเซิร์ฟเวอร์ส่งคำตอบกลับมา หากคำขอสำเร็จ อาร์กิวเมนต์ความสำเร็จจะมีผลลัพธ์ที่ประเมินแล้ว หากคำขอไม่สำเร็จ อาร์กิวเมนต์ failure จะมีข้อความแสดงข้อผิดพลาด |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003e\u003ccode\u003eImage.evaluate\u003c/code\u003e fetches the computed object's value from the server.\u003c/p\u003e\n"],["\u003cp\u003eThe server's response, whether successful or containing an error, is passed to a user-defined callback function.\u003c/p\u003e\n"],["\u003cp\u003eThis function is structured to handle both success (with the result) and failure (with an error message) scenarios.\u003c/p\u003e\n"]]],["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"],null,["# ee.Image.evaluate\n\n\u003cbr /\u003e\n\nAsynchronously retrieves the value of this object from the server and passes it to the provided callback function.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|----------------------------|---------|\n| Image.evaluate`(callback)` | |\n\n| Argument | Type | Details |\n|------------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `computedobject` | ComputedObject | The ComputedObject instance. |\n| `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. |"]]