从条目Typeorm打字稿中获取ID

时间:2019-06-23 13:12:54

标签: javascript typescript cordova typeorm

我想从特定条目中从数据库读取ID。 但是每次我这样做,都是“未定义的”。 如果我对其他查询执行此操作,那么它将起作用。 我在做什么错了?

我的代码:

    public testRead(tableName, title) {
        let connection = getConnection(); 
        let testRepository = connection.getRepository(tableName); 
        let entry = testRepository.getId({title: title});//undefined
        //let entry = testRepository.count(); //WORK - number ob entries
        console.log("TEST-READ: " + entry);
        return entry;
      }

    async readedData(){
        var readedId = await this.myApp.testRead("instruction", "test");
        console.log("Readed ID: " + readedId); //undefined!

0 个答案:

没有答案