[]
        
(Showing Draft Content)

使用 npm 引用 ActiveReportsJS

ActiveReportsJS 在 npm 中在@grapecity npm 域内使用 activereports.* 包来表示,@grapecity/activereports 代表了库包。与其他 npm包一样,您需要下载安装 NodeJS

可以通过执行以下命令从 npm 中安装最新版本 ActiveReportsJS :

npm install @grapecity/activereports

@grapecity/activereports 包结构

grapecity / activereports 包含了所有可用的功能模块:

  • readme.md
  • license.md
  • package.json
  • index.js
  • index.d.ts
  • dist
    • ar-js-core.js
    • ar-js-html.js
    • ar-js-pdf.js
    • ar-js-viewer.js
    • ar-js-xlsx.js
    • ie-polyfills.full.js
  • styles
    • ar-js-viewer.css
    • dark-yellow.css
    • green.css
    • light-blue.css
  • lib
    • node_modules > @grapecity
      • ar-js-html.d.ts
      • ar-js-html.js
      • ar-js-pagereport.d.ts
      • ar-js-pagereport.js
      • ar-js-pdf.d.ts
      • ar-js-pdf.js
      • ar-js-viewer.d.ts
      • ar-js-viewer.js
      • ar-js-xlsx.d.ts
      • ar-js-xlsx.js
      • en-locale.json
      • ie-polyfills.full.js
    • ar-js-core.d.ts
    • ar-js-html.d.ts
    • ar-js-pdf.d.ts
    • ar-js-viewer.d.ts
    • ar-js-xlsx.d.ts
  • core
    • index.js
    • index.d.ts
  • viewer
    • index.d.ts
    • index.js
  • pdfexport
    • index.d.ts
    • index.js
  • xlsxexport
    • index.d.ts
    • index.js
  • htmlexport
    • index.d.ts
    • index.js

使用 @grapecity/activereports 包

使用 import 语句导入 ActiveReportsJS 模块:

  • 导入包中的所有功能:

    import * as arjs from '@grapecity/activereports'; 
    // or...
    import { Viewer, Core, PdfExport} from '@grapecity/activereports';
    
  • 导入指定模块:

    import * as Core from '@grapecity/activereports/core';
    import { Viewer } from '@grapecity/activereports/viewer';