0

我无法让 delete_record 功能工作。这是我当前使用的 delete_record 代码:

$qb->db_id = $myQbTables["table1"]; //using table 1 now

$queries = array( //this is the where clause now for the delete query
  array(
    'fid'  => '12',
    'ev'   => 'EX',
    'cri'  => '1175'
  ),
  array(
    'fid'  => '8',
    'ev'   => 'EX',
    'cri'  => $Child_ID
  )
);

$results = $qb->do_query($queries, '', '', 'a', '1', 'structured', 'sortorder-A'); //get all results
if($results->errCode !== 0) {
  echo $results->errTxt;
}

print_r($results);

foreach($results->table->records->record as $record){ //getting results of delete query
$Deletevar = $record->f[11];    

$deleted = $qb->delete_record($Deletevar); //deleting results

print_r($deleted);  
}

我知道“cri”与我的快速库中的内容相匹配,但我似乎无法使用 f[3](记录 ID)来删除它!

笔记

我找到了我遇到的主要问题!如果您使用 QB API 进行 API 调用,删除记录和清除记录不包括应用令牌!!请使用以下代码更新 delete_records 函数!!!!

public function delete_record($rid) {
if($this->xml) {
                        $xml_packet = new SimpleXMLElement('<qdbapi></qdbapi>');
                        $xml_packet->addChild('rid',$rid);
                        $xml_packet->addChild('ticket',$this->ticket);
                        $xml_packet->addChild('apptoken',$this->app_token);
                        $xml_packet = $xml_packet->asXML();                        

                        $response = $this->transmit($xml_packet, 'API_DeleteRecord');
                }
                else {
                      $url_string = $this->qb_ssl . $this->db_id. "?act=API_DeleteRecord&ticket=". $this->ticket
                                        ."&apptoken=".$this->app_token."&rid=".$rid;

                        $response = $this->transmit($url_string);
                }

return $response;          
}
4

1 回答 1

1

我认为您的查询中可能遗漏了某些内容。如果您尝试获取字段 12 为 1157 且字段 8 等于的记录列表,则$Child_ID需要添加AND到查询中。在 URL 中使用 API 时,查询将是&query={12.EX.1175}AND{8.EX.77},例如,子 ID 为 77。要在 PHP SDK for Quickbase 中执行此操作,您需要添加'ao' => 'AND'到第一个查询数组之后的所有数组中。尝试将您的 $queries 数组更新为此:

$queries = array( //this is the where clause now for the delete query
                array(
                    'fid'  => '12',
                    'ev'   => 'EX',
                    'cri'  => '1175'
                ),
                array(
                    'ao'   => 'AND',  // Saying that 12.EX.1175 AND 8.EX.$Child_ID
                    'fid'  => '8',
                    'ev'   => 'EX',
                    'cri'  => $Child_ID
                )
);

我的 PHP 技能不是特别好,但是您需要做更多的工作才能获得记录 ID#。在原始代码中,我认为这$record->f[3]只会返回到 SimpleXMLObject 数组中的第三个字段。这不一定是字段 ID 3(记录 ID)。您可以选择不使用结构化格式(并更改所有代码以匹配)或添加一个遍历所有字段并在到达 id 为 3 的字段时删除的循环:

foreach($results->table->records->record as $record){ //getting results of delete query
    //Loop through all fields to find id 3
    foreach($record->f as $field){
        if($field['id'] == "3"){
            $Deletevar = $field['id'];
            $deleted = $qb->delete_record($Deletevar); //deleting result
            print_r($deleted);
            break;  //Stops this loop since FID 3 was found
        }
    }
}

一些性能说明:如果您不使用任何其他字段,则可以通过传递一个仅为“3”的 clist 将查询设置为仅返回记录 ID。此外,每个delete_record()都是单独的 API 调用。还有另一种方法purge_records允许您传递查询,Quickbase 会删除与您的查询匹配的所有记录。您可能想要考虑使用purge_records(),因为您可以使用它来代替您的do_query()并避免所有循环。它使用更少的资源和 Quickbase 来处理。

于 2015-09-15T00:23:06.647 回答