2

我正在为 Active Collab 中的创建任务创建 API,并且我已经成功完成了新任务、消息getset截止日期的名称。

但是,当我插入图像或文件时,它不会创建任务。

下面是我的代码,所以请帮我解决它。

try {
    API::call('projects/60/tasks/add', null, array(
        'task[name]' => $_POST['name'],
        'task[body]' => $_POST['message'],
        'task[priority]' => $priority,  
        'task[due_on]' => $date,
        'task[assignee_id]' => 21,
    ), array(
       'a.png' /* This array is for attach image to this task but not working in my case and I found this from https://help-classic.activecollab.com/books/api/sdk.html */
    ));
    echo 'Ticket Created Successfully.';

} catch(AppException $e) {
    print $e->getMessage() . '<br><br>';
    var_dump($e->getServerResponse());
}
4

1 回答 1

0

请替换a.png为文件系统上现有文件的绝对路径,例如/path/to/my/image.png.

于 2016-04-22T17:57:58.490 回答