1

我不知道你们中有多少人熟悉 parse.com 平台,但我正在使用链接在他们网站上的第三方 php 库,我遇到了一些问题。

链接:Parse.com PHP 库

我正在尝试查询我的数据库,但它不断返回Notice: Trying to get property of non-object.从我所看到的我的代码是正确的,但错误源于库中包含的文件之一。

到目前为止,这是我的代码:

function storeInParseDB ($message, $unit) {

    $parse = new parseQuery($class = 'PushNotifications');
    $parse->whereEqualTo('unit', $unit);
    $result = $parse->find();

    echo "RESULT: ";
    print_r($result);
}

引发错误的代码:

private function checkResponse($response,$responseCode,$expectedCode){
        //TODO: Need to also check for response for a correct result from parse.com
        if($responseCode != $expectedCode){
            $error = json_decode($response);
            $this->throwError($error->error,$error->code);
        }
        else{
            //check for empty return
            if($response == '{}'){
                return true;
            }
            else{
                return json_decode($response);
            }
        }
    }

任何帮助将不胜感激。

4

1 回答 1

1

我在克隆https://github.com/apotropaic/parse.com-php-library.git后运行以下代码- 创建了一个带有 appid、restkey 和 masterkey 的 parseConfig.php 文件,如自述文件中所述。

我在 Parse Data Browser 中创建了一个新类,其中包含一个字符串类型的“单元”列,并在其中添加了一行,unit = test。

<?php

include 'parse.com-php-library/parse.php';

function storeInParseDB ($message, $unit) {
        $parse = new parseQuery('PushNotifications');
        $parse->whereEqualTo('unit', $unit);
        $result = $parse->find();

        echo "RESULT: ";
        print_r($result);
}

storeInParseDB('hi', 'test');

如您所见,我得到了所需的输出,请确保您已正确设置 parseConfig.php 文件。

RESULT: stdClass Object
(
    [results] => Array
        (
            [0] => stdClass Object
                (
                    [unit] => test
                    [createdAt] => 2013-01-21T14:57:26.613Z
                    [updatedAt] => 2013-01-21T14:57:26.613Z
                    [objectId] => 0uiYuJcRYY
                )

        )

)
于 2013-01-21T15:02:18.923 回答