หน้านี้จะอธิบายวิธียกเลิกการตั้งค่าป้ายกำกับ Field
ในไฟล์ Google ไดรฟ์ไฟล์เดียว
หากต้องการนำข้อมูลเมตาออกจากไฟล์โดยยกเลิกการตั้งค่าป้ายกำกับไฟล์ ให้ใช้วิธี files.modifyLabels
เนื้อหาของคำขอมีอินสแตนซ์ของ ModifyLabelsRequest
เพื่อแก้ไขชุดป้ายกำกับในไฟล์ คำขออาจมีการเปลี่ยนแปลงหลายรายการที่ใช้พร้อมกัน กล่าวคือ หากการแก้ไขไม่ถูกต้อง การอัปเดตทั้งหมดจะไม่สำเร็จและจะไม่มีการใช้การเปลี่ยนแปลง (ที่อาจขึ้นต่อกัน) ใดๆ
ModifyLabelsRequest
มีอินสแตนซ์ของ LabelModification
ซึ่งเป็นการแก้ไขป้ายกำกับในไฟล์ และยังอาจมีอินสแตนซ์ของ FieldModification
ซึ่งเป็นการแก้ไขฟิลด์ของป้ายกำกับด้วย หากต้องการยกเลิกการตั้งค่าค่าสําหรับช่อง ให้ตั้งค่า FieldModification.unsetValues
เป็น True
หากทำสำเร็จ เนื้อหาการตอบกลับจะมีป้ายกำกับที่เพิ่มหรืออัปเดตโดยคำขอ รายการเหล่านี้อยู่ในออบเจ็กต์ modifiedLabels
ประเภท Label
ตัวอย่าง
ตัวอย่างโค้ดต่อไปนี้แสดงวิธีใช้ fieldId
และ labelId
เพื่อยกเลิกการตั้งค่าค่าในช่องของ fileId
ที่เชื่อมโยง เช่น หากป้ายกำกับมีทั้งช่องข้อความและช่องผู้ใช้ การยกเลิกการตั้งค่าช่องข้อความจะนำช่องข้อความออกจากป้ายกำกับ แต่จะไม่มีการแตะต้องช่องผู้ใช้ แต่การนําป้ายกํากับออกจะลบทั้งช่องข้อความและช่องผู้ใช้ที่เชื่อมโยงกับป้ายกํากับ ดูข้อมูลเพิ่มเติมได้ที่หัวข้อนำป้ายกำกับออกจากไฟล์
Java
LabelFieldModification fieldModification =
new LabelFieldModification().setFieldId("FIELD_ID").setUnsetValues(true);
ModifyLabelsRequest modifyLabelsRequest =
new ModifyLabelsRequest()
.setLabelModifications(
ImmutableList.of(
new LabelModification()
.setLabelId("LABEL_ID")
.setFieldModifications(ImmutableList.of(fieldModification))));
ModifyLabelsResponse modifyLabelsResponse = driveService.files().modifyLabels("FILE_ID", modifyLabelsRequest).execute();
Python
field_modification = {'fieldId':'FIELD_ID','unsetValues':True}
label_modification = {'labelId':'LABEL_ID', 'fieldModifications':[field_modification]}
modified_labels = drive_service.files().modifyLabels(fileId="FILE_ID", body = {'labelModifications' : [label_modification]}).execute();
Node.js
/**
* Unset a label with a field on a Drive file
* @return{obj} updated label data
**/
async function unsetLabelField() {
// 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 fieldModification = {
'fieldId': 'FIELD_ID',
'unsetValues': True,
};
const labelModification = {
'labelId': 'LABEL_ID',
'fieldModifications': [fieldModification],
};
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;
}
}
แทนที่ค่าต่อไปนี้
- FIELD_ID:
fieldId
ของช่องที่จะแก้ไข หากต้องการค้นหาfieldId
ให้ดึงข้อมูลป้ายกำกับโดยใช้ Google Drive Labels API - LABEL_ID:
labelId
ของป้ายกำกับที่จะแก้ไข - FILE_ID:
fileId
ของไฟล์ที่มีการเปลี่ยนแปลงป้ายกำกับ