Datomic:`:db.error / tempid-not-an-entity` tempid仅用作事务

时间:2018-03-14 13:08:00

标签: clojure datomic

当我尝试使用字符串tempid对无数据组v0.9.5656进行交易时,我得到以下异常:

(def tx1 {:db/id             "user"
          :contact/full-name "John Wayne"})
(def tx2 {:db/id    "other"
          :some-ref "user"
(let [!rx (d/transact conn [tx2])]
   (prn (:tempids @!rx))
=> 

datomic.impl.Exceptions$IllegalArgumentExceptionInfo: :db.error/tempid-not-an-entity tempid used only as value in transaction
    data: {#object[clojure.lang.Keyword 0x74af59e7 ":db/error"] #object[clojure.lang.Keyword 0x57972b49 ":db.error/tempid-not-an-entity"]}
             java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: :db.error/tempid-not-an-entity tempid used only as value in transaction

文档显示我应该能够使用字符串作为tempid。我错过了一个读取器宏来告诉它有关分区的信息吗?

2 个答案:

答案 0 :(得分:7)

原来我指的是我未包含在交易中的tempid实体。

我希望错误更明确,例如“你指的是tempid'用户',但是这个tx中唯一的时间是:#{”other“}”然后我会立即发现错误。

答案 1 :(得分:0)

获取此错误消息的另一种方法是将属性设置为空向量。大概[]被解释为一个伪造品,并且在事务中找不到:db/id []。 出于同样的原因,还有一个空的映射{}