5

有人可以分享将 ag-grid 添加到 Visual Studio 2015 c# 项目的步骤吗?我尝试了“npm install ag-grid”,它在我的项目文件夹中创建了 node_modules/ag-grid,但它没有将它添加到解决方案中。如果我将 node_modules 文件夹添加到解决方案并尝试重建,我会收到错误:

“构建:除非提供 '--module' 标志,否则无法编译模块。C:\SVN\SolutionName\ProjectName\node_modules\ag-grid\dist\lib\entities\rowNode.d.ts 5”

“构建:对装饰器的实验性支持是一项可能在未来版本中更改的功能。指定“--experimentalDecorators”以删除此警告。C:\SVN\SolutionName\ProjectName\node_modules\ag-grid\src\ts\ cellNavigationService.ts"

在此处输入图像描述

4

1 回答 1

0

在您的项目中开始使用 ag-Grid - 链接将帮助您开始使用。好像您正在使用 .Net MVC,因此您需要使用它的 JavaScript 版本。

从 index.html 中引用 js 和 CSS 文件:Doc Reference,无需npm install

<head>
  <script src="https://unpkg.com/ag-grid-community/dist/ag-grid-community.min.noStyle.js"></script>
  <link rel="stylesheet" href="https://unpkg.com/ag-grid-community/dist/styles/ag-grid.css">
  <link rel="stylesheet" href="https://unpkg.com/ag-grid-community/dist/styles/ag-theme-balham.css">
</head>
于 2019-12-09T09:06:28.867 回答