标签: google-maps-api-3 google-fusion-tables
我正在查询融合表:
SELECT Latitude,Longitude FROM myTable WHERE 'CompanyName' = 'Creek & Sons Co Ltd'
问题显然是&,Google融合表查询需要如何转义?
&
我发送包含在encodeURI
encodeURI
答案 0 :(得分:2)
使用encodeURIComponent()代替,encodeURI不对&符号进行编码。
encodeURIComponent()