查看其他應用程序
查看源代碼
試用我們的雲API

Excel到表單轉換器-立即創建表單

使用這些工具將Excel工作表轉換為互動式表單

由...提供技術支持 aspose.com & aspose.cloud
輸入網址 輸入網址

*上傳您的文件或使用我們的服務即表示您同意我們的 服務條款 & 隱私政策

Password

教程

如何保存數據並下載HTML檔案
const datas = exportModifiedCellInfo();
const template = `your template name`;
const url = `your API address`;

AjaxHelper.authenticatedRequest({
    method: 'POST',
    url: url,
    data: JSON.stringify(datas),
    contentType: 'application/json',
    cache: false,
    success: successFn,
    error: errorFn
});