Parse.com Class 更新自 API
Parse.com Class Update From API
我有一个名为 Currency 的 Parse Class,它使用 https://openexchangerates.org/. I do not need the rates "real time" so I would like to somehow GET the info using cloud code/scheduled job once a day and then overwrite the existing entry in Currency. When users query against the rates throughout the day, it uses the Parse class and not an API call to https://openexchangerates.org 中的确切格式提供静态汇率。可以在 Parse.com 中覆盖 class 或 class 中的对象吗?如果没有,是否有关于如何解决这个问题的建议?提前致谢。
创建您的任务并根据需要将其设置为每天 运行 一次。在作业中,发出 http 请求。迭代收到的结果以处理每个转换。对于该转换,运行 查询通过匹配转换货币来查找数据存储中的现有项目(如果存在)。如果未找到匹配项,请更新此对象或创建一个新对象。
另一种方法是在处理结果之前批量删除所有转化。这不是很好,因为它留下了有限的时间,用户无法使用任何转换,如果出现错误,甚至旧转换也不可用。
我有一个名为 Currency 的 Parse Class,它使用 https://openexchangerates.org/. I do not need the rates "real time" so I would like to somehow GET the info using cloud code/scheduled job once a day and then overwrite the existing entry in Currency. When users query against the rates throughout the day, it uses the Parse class and not an API call to https://openexchangerates.org 中的确切格式提供静态汇率。可以在 Parse.com 中覆盖 class 或 class 中的对象吗?如果没有,是否有关于如何解决这个问题的建议?提前致谢。
创建您的任务并根据需要将其设置为每天 运行 一次。在作业中,发出 http 请求。迭代收到的结果以处理每个转换。对于该转换,运行 查询通过匹配转换货币来查找数据存储中的现有项目(如果存在)。如果未找到匹配项,请更新此对象或创建一个新对象。
另一种方法是在处理结果之前批量删除所有转化。这不是很好,因为它留下了有限的时间,用户无法使用任何转换,如果出现错误,甚至旧转换也不可用。