*Simple* Parse Cloud Code query failure “TypeError: Cannot call method 'get' of undefined\n retrieve that info ”
问题 I've been trying to do something very simple for several hours now and I don't know what I'm doing wrong. I'm simple trying to query the username of the first person from my Parse data set via Cloud Code, and then I want to bring that down to my iOS application. Despite all attempts it doesn't seem to be working. Below you'll find my code. Parse.Cloud.define("userName", function(request,response){ var query = new Parse.Query(Parse.User); query.equalTo("username", request.params.username)