我有两个要在一台计算机上运行的代码库。请求特定域时,应提供一个代码库。其余所有代码都应使用其他代码库。我在本地有一个有效的示例(在macOS 10.13.6上为Apache 2.4.33),并且An In-Depth Discussion of Virtual Host Matching似乎表明除非省略for (let i = 0; i < array.length; i += 1) {
let exist = false;
const item = array[i];
for (let j = 0; j < anotherArray.length; j += 1) {
const anotherItem = anotherArray[j];
if (item.id === anotherItem.id) {
exist = true;
}
}
if (item.sub && !exist) {
this.newArray.push({
text: `${item.sub.name} / ${item.name}`,
value: item.id,
});
}
}
头,否则它将起作用。那是对的吗?谢谢!
Host: