update_field($selector, $value, [$post_id]);分组://Group your data into an array:$values = array( 'street' => $street, 'number' => $number, 'zipcode' => $zipcode, 'city' => $city);//Update the field using this array as value:update_field( 'selector', $values, $post_ID );