I encountered a problem. I queried a batch of data from the database. It was normal to return the data to the client unchanged. The client received a Map of ParseObject, and I could convert it into a ParseObject. However, once I modified the data, the data received by the client became abnormal.
const results = await query.find({ sessionToken: sessionToken });
for (var post of results) {
//post.set('aaa', 'aaaa'); //This line of code causes the problem.
}
return results;
The way cloud code works is when you return the results it gets encoded first and then decoded on the client side. If we add an options to either remove the encoding / decoding or both it should fix your issue. You can use the workaround posted here Return Plain Objects from Cloud Code - #7 by BobyIlea
Can you write a failing test on the JS SDK so we can replicate your issue?
Thank you for the reply from dplewis. The solution I’m using now is also to call toJSON in the cloud code, and then convert it using ParseObject('Post').fromJson on the client side. I’m really sorry, but I’m using the Flutter SDK.
If you set a value on an object without saving it, it becomes dirty. And it seems that the encoder checks if the object is dirty and if it is, it converts it to pointer. Not really sure what’s the reason behind this, but it seems intentional.