on_progress
这是office365问题吗? 或我的代码
环境:windows10
答案 0 :(得分:1)
您的标题回答了这个问题。没有像.xslk这样的excel文件格式。也许你是说
data.to_excel('output.xlsx')
?
答案 1 :(得分:1)
尝试一下
import { Injectable } from '@angular/core';
@Injectable(
{
providedIn: 'root'
}
)
export class LoadingServiceService {
private loading: boolean = false
constructor() { }
public setLoading(value: boolean): void {
this.loading = value
}
public isLoading(): boolean {
return this.loading
}
}