在PFQuery上调用.whereKey方法

时间:2015-08-11 07:37:56

标签: ios swift parse-platform

我尝试在用户删除表格单元格后删除Parse中的数据源。它工作得很好,因为我测试了不同的.whereKey方法,但我似乎无法弄清楚要使用哪一个来查找实际删除的对象。我目前在下面列出的内容会返回错误:"没有与查询匹配的结果。"

由于

    <!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" type="text/css" href="style.css">
        <title>Title of the document</title>
    </head>

    <body>
        <div class="sidebar">
            Should be fixed, full height, 160px Width.
        </div>

        <div class="page-wrapper">
            Should be full width minus the sidebar width
        </div>
    </body>
</html>

1 个答案:

答案 0 :(得分:0)

我的简单建议是从objectId获取对象以方便使用,因为有时您可以从unsigned方法获取多个对象,并且很难组织它们。

您可以将项目的objectId存储在数组中,并且当您要删除对象时使用whereKey containString这个method比调用删除objectWithoutDataWithClassName method在块中执行您的操作想。

希望它有所帮助。