在ng2-uploader中动态更改URL的方法如下:
import { UploaderOptions, UploadFile } from 'ng2-uploader';
const options: UploaderOptions = {
url: 'http://your-upload-url',
method: 'POST'
};
currentUrl: string = 'http://your-upload-url';
<input type="text" [(ngModel)]="currentUrl">
uploadFile(file: UploadFile): void {
const options: UploaderOptions = {
url: this.currentUrl,
method: 'POST'
};
// 使用ng2-uploader的上传方法
this.uploader.upload(file, options);
}
通过以上步骤,你可以在ng2-uploader中动态更改URL。当用户在输入框中修改URL时,ngModel会自动更新currentUrl变量的值,然后在上传文件的方法中使用最新的URL进行上传。
注意:这里的示例代码仅供参考,具体实现可能会根据你的项目结构和需求有所不同。请根据实际情况进行调整和修改。
领取专属 10元无门槛券
手把手带您无忧上云