【发布时间】:2013-05-13 16:05:35
【问题描述】:
我正在查询一个融合表:
SELECT Latitude,Longitude FROM myTable WHERE 'CompanyName' = 'Creek & Sons Co Ltd'
问题明明是&,谷歌融合表查询需要怎么转义?
我正在发送包裹在encodeURI 中的查询
【问题讨论】:
标签: google-maps-api-3 google-fusion-tables
我正在查询一个融合表:
SELECT Latitude,Longitude FROM myTable WHERE 'CompanyName' = 'Creek & Sons Co Ltd'
问题明明是&,谷歌融合表查询需要怎么转义?
我正在发送包裹在encodeURI 中的查询
【问题讨论】:
标签: google-maps-api-3 google-fusion-tables
请改用encodeURIComponent(),encodeURI 不会对 & 符号进行编码。
【讨论】: