修复属性查询失败的bug

This commit is contained in:
JIANG
2025-11-11 18:06:00 +08:00
parent d56fffafb2
commit 03b414b777

View File

@@ -228,7 +228,7 @@ const queryFeaturesByIds = async (
return [];
}
const orFilter = ids.map((id) => `id=${id}`).join(" OR ");
const orFilter = ids.map((id) => `id='${id}'`).join(" OR ");
try {
if (!layer) {