我正在尝试使用objective-c限制特定国家/地区的Google自动填充地点搜索API,例如孟加拉国。这是我的代码
set objOutFile = objFSO.OpenTextFile("C:\I_Calls.csv", 2, true, 0)
'First write the header row
objOutFile.WriteLine arrRows(0)
'Write the extra line.
objOutFile.WriteLine "12345678,""AB"""
'Write the existing content skipping the first header row.
for i=1 to UBound(arrRows)
objOutFile.WriteLine arrRows(i)
next
objOutFile.close
但无法按国家限制。如果有人帮我解决问题,我将不胜感激。感谢。
答案 0 :(得分:1)