วิธีการ PickerBuilder.setSelectableMimeTypes

ตั้งค่ารายการประเภท MIME ที่สามารถเลือกได้ ใช้คอมมาคั่นประเภท MIME หากจำเป็นต้องใช้มากกว่า 1 ประเภท หากคุณไม่ได้ตั้งค่าประเภท MIME ไฟล์ของ ประเภท MIME ทั้งหมดจะแสดงในมุมมอง

ตัวอย่าง

การใช้งานขั้นพื้นฐานที่มีประเภท MIME หลายประเภท

const mimeTypes = ['image/png', 'image/jpeg'];
const builder = new google.pickerPickerBuilder()
  .setSelectableMimeTypes(mimeTypes.join(','));

ประเภท MIME ของ Google Workspace

 const mimeTypes = [
 'application/vnd.google-apps.document',
 'application/vnd.google-apps.presentation',
 'application/vnd.google-apps.spreadsheet',
];

const builder = new google.pickerPickerBuilder()
  .setSelectableMimeTypes(mimeTypes.join(','));

ลายเซ็น

setSelectableMimeTypes(type: string): PickerBuilder;

รายละเอียด

ไม่บังคับ ไม่ได้
รอบชิงชนะเลิศ ไม่ได้
มีการป้องกัน ไม่ได้
คงที่ ไม่ได้

พารามิเตอร์

ชื่อ ประเภท ไม่บังคับ คำอธิบาย
type string ไม่ได้

การคืนสินค้า

PickerBuilder