我正在尝试将两个网址组合成一个网址。
let url = "http://example.com/public/";
我在路径"/samples/leads/Import_Leads_Sample.csv"
中有来自API的文件。我在filepath
作为{/ 1}}的一个下标中使用此文件,现在filepath保存
filepath: "/samples/leads/Import_Leads_Sample.csv"
我希望将它们合并在一起并形成一个URL。
let url = "http://example.com/public/samples/leads/Import_Leads_Sample.csv"
答案 0 :(得分:0)
将文件路径存储在变量中并组合两个变量。
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