gpt4 book ai didi

javascript - 如何在路径中插入变量

转载 作者:行者123 更新时间:2023-12-01 02:52:08 25 4
gpt4 key购买 nike

我正在尝试在 map 图层的路径内添加一个变量。

mypath='MyApp'
var Finals = L.tileLayer.wms("http://localhost:8080/geoserver/'+mypath+'/wms", {
layers: 'MyApp:finalVector',
format: 'image/png',
transparent: true,
version: '1.1.0',
attribution: "myattribution"
});

如何在 Finals 变量中添加 mypath 变量。

添加后应如下所示

var Finals = L.tileLayer.wms("http://localhost:8080/geoserver/MyApp/wms", {
layers: 'MyApp:finalVector',
format: 'image/png',
transparent: true,
version: '1.1.0',
attribution: "myattribution"
});

最佳答案

mypath='MyApp'
var Finals = L.tileLayer.wms("http://localhost:8080/geoserver/" + mypath + "/wms", {
layers: 'MyApp:finalVector',
format: 'image/png',
transparent: true,
version: '1.1.0',
attribution: "myattribution"
});

关于javascript - 如何在路径中插入变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46902043/

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