Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Rest API 将文章与媒体链接。
我有文章 ID 和来自图像(媒体)的 ID,现在想向 API 发送文章更新以更新图像。
这可能吗?
像这样?
$article[]=array( 'id'=>'13, 'images'=>array('media_id' => 4) ); $return = $client->put('articles',array($article);
它需要被称为“mediaId”,所以
$article[] = array( 'id' => '13', 'images' => array( array('mediaId' => 1), array('mediaId' => 2), ) );
这应该可以按 ID 分配媒体项目。