Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Talend 按纬度和经度获取天气数据。我正在检索所有适用的纬度和经度值,然后我需要遍历这些值并创建包含纬度和经度的 URL。我试图使用 tFileFetch 来检索响应,但我看不到任何方法来传递纬度和经度的变量。有谁知道我应该使用其他组件吗?
谢谢
我不确定我是否理解您的问题,但我会尝试。
在 tFileFetch 组件的 URI 字段中,您可以将前一个组件的输出添加为 lat long,例如:
"http://www.weather.com/weather/right-now?lat=" + lat + "&long=" + long
如果我完全不在,请提供有关您要查找的内容的更多详细信息。
您还可以使用 tRest 组件来检索响应。