requestPut(url: string, data: string): Promise<any> {
        return this.request(url, { method: 'PUT', data });
    }