[Vuejs]-Back4app Parse-sever : Find just get just the id not all data

1👍

Thanks, nataliec!

The final code is:

mounted: function() {
    var Case = Parse.Object.extend("DivorceCase");
    var query = new Parse.Query(Case);
    query.find()
        .then((Ids) => {

                Ids.forEach(element => {

                    var Case = Parse.Object.extend("DivorceCase");
                    var query = new Parse.Query(Case);
                    query.get(element.id)
                        .then((DivorceCaseResponse) => {
                                // The object was retrieved successfully.
                                this.DivorceCases.push(DivorceCaseResponse.get("BasicInfo"));
                            },
                            (e) => {
                                // The object was not retrieved successfully.
                                // error is a Parse.Error with an error code and message.
                                swal({
                                    position: 'center',
                                    type: 'error',
                                    title: e.message,
                                    customClass: 'swal-wide'
                                })
                            });

                });



            },
            (e) => {
                // The object was not retrieved successfully.
                // error is a Parse.Error with an error code and message.
                swal({
                    position: 'center',
                    type: 'error',
                    title: e.message,
                    customClass: 'swal-wide'
                })

            });
}

2👍

to get the value of the other columns field, you need to use the code below:

var columnName = DivorceCaseResponse.get("columnName");

You can check more about retrieving objects here.

Leave a comment