Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 AngularJs 应用程序,我正在从 excel 表中导入数据。现在我有一个模板需要用于导入。
请帮助我如何提供 excel 模板以供下载使用 Angularjs
到现在为止:我在应用程序中有一个名为excel-template的文件夹,并且在我提供的 UI 中<a href="excel-template/excel-template.xlsx">Download</a>。它下载文件,但是当我打开它时,它说它已损坏。
<a href="excel-template/excel-template.xlsx">Download</a>
提前致谢。
您可以使用锚标记提供 excel 模板以供下载。确保路径正确。
<a target="_self" href="excel-templates/XYZ.xlsx" download="XYZ.xlsx"><span>Download Template</span></a>