地址标准化
命令说明
将地址进行标准化,支持输入多个地址,以\n隔开,返回数组
命令原型
arrayRet = Mage.NLPAddressStandard(address,config,time)
命令参数
参数 | 必选 | 类型 | 默认值 | 说明 |
---|---|---|---|---|
address | True | expression | "" | 待标准化地址的信息,支持输入多个地址,以\n隔开 |
config | True | expression | {} | Laiye Intelligent Document Processing 的调用配置 |
time | True | number | 30000 | 指定等待时间(以毫秒为单位),如果超出该时间,则引发异常。默认30000毫秒(30秒) |
返回结果
arrayRet,将命令运行后的结果赋值给此变量。
运行实例
/**********************地址标准化**********************
命令原型:
arrayRet = Mage.NLPAddressStandard("",{},30000)
入参:
address--待标准化地址
config--mage配置,需配置Pubkey和Secret.Type:Dict
time--超时时间.默认单位:毫秒.Type:Int
出参:
arrayRet--函数调用的输出保存到的变量
注意事项:
需要获取mage对应的Key/Secret和URL
****************************************************/
Dim address="上海市浦东新区张江镇" // 待标准化地址
Dim arrayRet="" // 输出结果
arrayRet = Mage.NLPAddressStandard(address,{"Pubkey":"KJ55tRgUjGxJAJ20SzpNtza0","Secret":"urfWfYHwQhyR8uVkpTWhjjEX6gpZKRyg","Url":"https://mage.uibot.com.cn"},30000)
Traceprint(arrayRet)