-2

我正在尝试将变量连接到 JavaScript 中的构造函数中

我有一个这样的变量:

var selectedLayer = "myLayer";

然后我正在创建一个Leaflet 平铺层,然后我想将变量合并到构造函数中:

test = new L.TileLayer.WMS('http://localhost/geoserver/wms',{layers : 'geonode:<selectedLayer>', format: 'image/png'});
4

1 回答 1

2

javascript中的字符串连接是用 simple 完成的+,所以你的情况是:

{
 layers: 'geonode:' + selectedLayer, 
 format: 'image/png'
}
于 2013-07-17T10:54:11.100 回答