0

我是filemaker的新手。我正在尝试设置搜索功能,但出了点问题,No records match the request即使它存在,它也会返回。这是代码

public function get_row($table, $search='')
{
    $layout_object = $this->fm->getLayout($table);
    if (FileMaker::isError($layout_object)) {
        return array();
    }

    $request = $this->fm->newFindCommand($table);
    if ($search)
    {
        $request->addFindCriterion($search['key'], 'hh@kkk.nn'); // hardcoded. 
    }
    $result = $request->execute();
    if (FileMaker::isError($result)) {
        echo $result->getErrorString();
    }
            //.....Result: No records match the request 

} 

我做错了什么?

4

1 回答 1

1

您需要转义 @ 符号,因为它是查找模式下的特殊字符以匹配任何一个字符,所以试试这个:

$request->addFindCriterion($search['key'], 'hh\@kkk.nn'); // hardcoded. 
于 2012-08-07T12:40:24.677 回答