
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
ac-spreadsheet
Advanced tools
### 简介 **ac-spreadsheet** 是一个在线电子表格组件,依赖于[handsontable](https://github.com/handsontable/handsontable).该组件提供了列宽拖拽、列交换、排序、在线编辑、增减行、动态获取焦点行数据等操作。 ### 安装
ac-spreadsheet 是一个在线电子表格组件,依赖于handsontable.该组件提供了列宽拖拽、列交换、排序、在线编辑、增减行、动态获取焦点行数据等操作。
npm安装 npm install ac-spreadsheet --save
cnpm安装 cnpm install ac-spreadsheet --save
ynpm安装ynpm installac-spreadsheet --save
import React, { Component } from 'react';
import HotTable from 'ac-spreadsheet';
class Demo1 extends Component {
constructor(props) {
super(props);
this.data = [
['张其', '2019',11 ,'男',90 ],
['王收', '2020', 11, '男', 100],
['孙武', '2018', 11, '男', 93],
['宋佳','2021', 13, '女', 92],
['李琦','2021', 15, '女', 99]
];
}
render() {
return (<HotTable data={this.data} width="600" height="300" />);
}
}
| 参数 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| settings | object | handsontable组件中的所需参数都在这个对象中 |
$ npm install
$ npm run dev
FAQs
### 简介 **ac-spreadsheet** 是一个在线电子表格组件,依赖于[handsontable](https://github.com/handsontable/handsontable).该组件提供了列宽拖拽、列交换、排序、在线编辑、增减行、动态获取焦点行数据等操作。 ### 安装
The npm package ac-spreadsheet receives a total of 1 weekly downloads. As such, ac-spreadsheet popularity was classified as not popular.
We found that ac-spreadsheet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.