当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript rethinkdb.now函数代码示例

本文整理汇总了TypeScript中rethinkdb.now函数的典型用法代码示例。如果您正苦于以下问题:TypeScript now函数的具体用法?TypeScript now怎么用?TypeScript now使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了now函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

router.post("/api/messages/create", async function() {
  var conn = await r.connect(config.database);
  this.body = await r.table("messages").insert({
    user: this.request.body.user,
    text: this.request.body.text,
    time: r.now(),
  }).run(conn);
  conn.close();
});
开发者ID:itainteasy,项目名称:angular2-typescript-example,代码行数:9,代码来源:app.ts

示例2: function

    testDb.tableCreate("users").run(conn, function(err, stuff) {
        const users = testDb.table("users");

        users.insert({ name: "bob" }).run(conn, function() {
        });

        users.hasFields("foo_bar").run(conn, () => {});

        users.filter(function(doc?) {
            return doc("henry").eq("bob");
        })
        .filter(r.row("updatedAt").default(0).lt(r.now().sub(1000)))
        .between("james", "beth")
        .limit(4)
        .run(conn, function(err, cursor) {
          cursor.toArray<string>((err, strings) => {
            console.log(strings);
          });
        });
    });
开发者ID:ArtemZag,项目名称:DefinitelyTyped,代码行数:20,代码来源:rethinkdb-tests.ts

示例3: crearPost

async function crearPost(ctx) {  
  try {    
    let { titulo, texto } = ctx.request.body;    
    let con = await r.connect(config);
        
    let post = await r.db('blog').table('posts').insert({
      titulo: titulo,
      fecha: r.now(),
      texto: texto
    }).run(con);
    
    ctx.body = {
      post_id: post.generated_keys[0] 
    }
  } catch (e) {
    ctx.status = 500;
    ctx.body = {
      status: ctx.status,
      error: e.message
    }
  }
}
开发者ID:melendezgg,项目名称:koa2-rethinkdb-typescript,代码行数:22,代码来源:server.ts

示例4: function

routerAuthenticated.post('/enter/:barId/:userId', async function () {
    if (this.request.body.title && this.request.body.artist) {
        var conn = await r.connect(AppConfig.dbConfig);
        var currentTrack = {
            artist: this.request.body.artist,
            title: this.request.body.title,
            location: this.params.barId,
            album: this.request.body.album ? this.request.body.album : '',
            begin: r.now(),
        };

        await r.table('locations').get(this.params.barId).update({ lastTrack: currentTrack }).run(conn);
        await r.table('users')
                .get(this.params.userId)
                .update({
                    tagCounter: r.row('tagCounter').add(1).default(0),
                    firstTagCounter: r.row('firstTagCounter').add(1).default(0)
                }).run(conn)
        this.body = await r.table("tracks").insert(currentTrack).run(conn);
        conn.close();
    } else {
        this.body = {};
    }
});
开发者ID:hhoechtl,项目名称:bar-sounds-hackathon,代码行数:24,代码来源:app.ts


注:本文中的rethinkdb.now函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。