Ag-Grid Basic AngularJS 1.x 示例不起作用
Ag-Grid Basic AngularJS 1.x Example Not Working
来自official website is not working, getting blank at Plunker的代码,只修改了两处:
- script.js、
var module = angular.module
到 var m = angular.module
正如 Plnkr 抱怨 "Redefinition of module".
- index.html,明确声明 gridOptions 的高度。
当您的文件名为 script.js
时,您有 <script src="scripts.js"></script>
确保文件引用与此相同plnkr
作为旁注,最好通过按错误出现的顺序解决错误来调试您的应用程序,有时修复 404 not found 会修复 angular 想要抱怨的任何问题...
来自official website is not working, getting blank at Plunker的代码,只修改了两处:
- script.js、
var module = angular.module
到var m = angular.module
正如 Plnkr 抱怨 "Redefinition of module". - index.html,明确声明 gridOptions 的高度。
当您的文件名为 script.js
<script src="scripts.js"></script>
确保文件引用与此相同plnkr
作为旁注,最好通过按错误出现的顺序解决错误来调试您的应用程序,有时修复 404 not found 会修复 angular 想要抱怨的任何问题...