verify-docx.js 777 B

12345678910111213141516171819202122232425262728293031
  1. // 验证docx库是否正确安装
  2. const { Document, Paragraph, TextRun } = require('docx');
  3. console.log('✅ docx库导入成功!');
  4. console.log('📦 可用的类:');
  5. console.log(' - Document:', typeof Document);
  6. console.log(' - Paragraph:', typeof Paragraph);
  7. console.log(' - TextRun:', typeof TextRun);
  8. // 测试创建简单文档
  9. try {
  10. const doc = new Document({
  11. sections: [{
  12. children: [
  13. new Paragraph({
  14. children: [
  15. new TextRun({
  16. text: "Hello World!",
  17. bold: true
  18. })
  19. ]
  20. })
  21. ]
  22. }]
  23. });
  24. console.log('✅ 文档创建成功!');
  25. console.log('✅ docx库功能正常!');
  26. } catch (error) {
  27. console.error('❌ 创建文档失败:', error.message);
  28. }