MATLAB包含一个 ngOnInit() {
this.sub = this.route.params.subscribe(params => {
this.id = params['slug'];
});
this.getCategoryByID(this.id);
}
getCategoryByID(slug) {
this.serverService.getProductByCategory(slug)
.subscribe(
(response) => { fillProducts(response); },
(error) => console.log(error)
);
}
fillProducts(response : any){
response.map(product => {this.products.push(product)});
const productsToDisplay = this.products.forEach(element => {
console.log(element)
});
}
类,这样在正常情况下,我可以做类似的事情,
ftp
但是,我的互联网访问只能通过代理服务器,第一行(打开连接)给出
f = ftp(host,username,password);
mget(f, filename, targetfolder);
close(f);
Could not open a connection to "[hostname redacted]", port "21".
的文档明确说明" ftp功能不支持代理服务器设置。"。
那么,在MATLAB中有没有其他方法可以使用ftp下载内容?支持代理的更现代的东西似乎是围绕ftp
建立的,但这似乎完全是基于http的。