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.
我需要创建一个具有已知值但类型未知的属性的 updateContext。如果我们可以避免先查询实体,那就太好了。有什么方法可以在事先不知道属性类型的情况下更新属性吗?
这取决于猎户座版本。在 0.17.0 之前,属性类型被用作属性标识的一部分(连同属性名称)。因此,您需要提前知道属性类型,以便以“安全”的方式更新它(您可以使用空类型,这意味着“任何类型”,但存在其他同名属性被无意更新的风险)。
但是,从 0.17.0 开始,只有属性名称用于属性标识。因此,您无需在属性更新中指定类型。基本上: