นำป้ายกำกับออกจากไฟล์

หน้านี้จะอธิบายวิธีนำป้ายกำกับออกจากไฟล์ Google ไดรฟ์ไฟล์เดียว

หากต้องการนำข้อมูลเมตาของป้ายกำกับไฟล์ออกจากไฟล์ ให้ใช้เมธอด files.modifyLabels เนื้อหาของคำขอมีอินสแตนซ์ของ ModifyLabelsRequest เพื่อแก้ไขชุดป้ายกำกับในไฟล์ คำขออาจมีการเปลี่ยนแปลงหลายรายการที่ใช้พร้อมกัน กล่าวคือ หากการแก้ไขไม่ถูกต้อง การอัปเดตทั้งหมดจะไม่สำเร็จและจะไม่มีการใช้การเปลี่ยนแปลง (ที่อาจขึ้นต่อกัน) ใดๆ

ModifyLabelsRequest มีอินสแตนซ์ของ LabelModification ซึ่งเป็นการแก้ไขป้ายกำกับในไฟล์ และยังอาจมีอินสแตนซ์ของ FieldModification ซึ่งเป็นการแก้ไขฟิลด์ของป้ายกำกับด้วย หากต้องการนำป้ายกำกับออกจากไฟล์ ให้ตั้งค่า FieldModification.removeLabel เป็น True

หากทำสำเร็จ เนื้อหาการตอบกลับจะมีป้ายกำกับที่เพิ่มหรืออัปเดตโดยคำขอ รายการเหล่านี้อยู่ในออบเจ็กต์ modifiedLabels ประเภท Label

ตัวอย่าง

ตัวอย่างโค้ดต่อไปนี้แสดงวิธีใช้ labelId เพื่อนำช่องทั้งหมดที่เชื่อมโยงกับป้ายกำกับออกโดยใช้ fileId ตัวอย่างเช่น หากป้ายกำกับมีทั้งช่องข้อความและช่องผู้ใช้ การนําป้ายกำกับออกจะเป็นการลบทั้งช่องข้อความและช่องผู้ใช้ที่เชื่อมโยงกับป้ายกำกับทั้ง 2 ช่อง ส่วนการยกเลิกการตั้งค่าช่องข้อความจะนำช่องออกจากป้ายกำกับ แต่ไม่ส่งผลต่อช่องผู้ใช้ ดูข้อมูลเพิ่มเติมได้ที่หัวข้อยกเลิกการตั้งค่าช่องป้ายกำกับในไฟล์

Java

ModifyLabelsRequest modifyLabelsRequest =
  new ModifyLabelsRequest()
      .setLabelModifications(
          ImmutableList.of(
              new LabelModification()
                .setLabelId("LABEL_ID")
                .setRemoveLabel(true)));

ModifyLabelsResponse modifyLabelsResponse = driveService.files().modifyLabels("FILE_ID", modifyLabelsRequest).execute();

Python

label_modification = {'labelId':'LABEL_ID', 'removeLabel': True]}

modified_labels = drive_service.files().modifyLabels(fileId="FILE_ID", body = {'labelModifications' : [label_modification]}).execute();

Node.js

/**
* Remove a label on a Drive file
* @return{obj} updated label data
**/
async function removeLabel() {
  // Get credentials and build service
  // TODO (developer) - Use appropriate auth mechanism for your app

  const {GoogleAuth} = require('google-auth-library');
  const {google} = require('googleapis');

  const auth = new GoogleAuth({scopes: 'https://www.googleapis.com/auth/drive'});
  const service = google.drive({version: 'v3', auth});
  const labelModification = {
    'labelId': 'LABEL_ID',
    'removeLabel': True,
  };
  const labelModificationRequest = {
    'labelModifications': [labelModification],
  };
  try {
    const updateResponse = await service.files.modifyLabels({
      fileId: 'FILE_ID',
      resource: labelModificationRequest,
    });
    return updateResponse;
  } catch (err) {
    // TODO (developer) - Handle error
    throw err;
  }

แทนที่ค่าต่อไปนี้

  • LABEL_ID: labelId ของป้ายกำกับที่จะแก้ไข หากต้องการค้นหาป้ายกำกับในไฟล์ ให้ใช้เมธอด files.listLabels
  • FILE_ID: fileId ของไฟล์ที่มีการเปลี่ยนแปลงป้ายกำกับ