gpt4 book ai didi

javascript - 在 angular2 中将两个 URL 合并为一个 - ionic2

转载 作者:行者123 更新时间:2023-11-28 04:40:48 24 4
gpt4 key购买 nike

我正在尝试将两个网址合并为一个网址。

let url = "http://example.com/public/";

我的路径“/samples/leads/Import_Leads_Sample.csv”中有来自API的文件。我将其放在一个下标中作为 filepath 现在 filepath 包含

 filepath: "/samples/leads/Import_Leads_Sample.csv"

我希望将两者结合起来并形成一个 URL。

let url = "http://example.com/public/samples/leads/Import_Leads_Sample.csv"

最佳答案

将文件路径存储在变量中并组合两个变量。

let url = "http://example.com/public/";
let filepath = Object.filepath; // equals "/samples/leads/Import_Leads_Sample.csv"

let finalUrl = url + filepath.substr(1); // substr(1) to remove the '/' and avoid having a final url with '//' in it

关于javascript - 在 angular2 中将两个 URL 合并为一个 - ionic2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43799711/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com