代码之家  ›  专栏  ›  技术社区  ›  DauleDK

你能用firebase管理节点创建firestore时间戳吗?[副本]

  •  3
  • DauleDK  · 技术社区  · 6 年前

    Timestamp Objects

    我们在前端通过导入firestore成功地做到了这一点

    import { firestore } from 'firebase';
    

      startDate: firestore.Timestamp;
    

    问题是我似乎找不到访问节点中时间戳的方法。

    我试过记录admin和functions对象,但似乎根本找不到时间戳

    import * as functions from 'firebase-functions';
    import * as admin from 'firebase-admin';
    ...
    console.log(functions)
    console.log(admin)
    

    这些是我尝试过的,它们都返回了“Timestamp不存在于未定义的”

    import * as firebase from 'firebase';
    ...
    firebase.firestore.Timestamp.now()
    

    const firebase = require('firebase')   
    ...
    firebase.firestore.Timestamp.now()
    

    import * as admin from 'firebase-admin';
    ...
    admin.firestore.Timestamp.now()
    

    这是我的package.json依赖项

    "dependencies": {
        "@sendgrid/mail": "^6.2.1",
        "@types/node-fetch": "^1.6.8",
        "chai": "^4.1.2",
        "chai-as-promised": "^7.1.1",
        "cors": "^2.8.4",
        "encodeurl": "^1.0.2",
        "fetch": "^1.1.0",
        "firebase": "^4.13.0",
        "firebase-admin": "^5.12.0",
        "firebase-functions": "^1.0.1",
        "generator-karma": "^2.0.0",
        "google-distance": "^1.0.1",
        "mailgun-js": "^0.13.1",
        "moment": "^2.22.1",
        "node-fetch": "^2.1.2",
        "request": "^2.85.0",
        "sinon": "^4.0.1",
        "typescript": "^2.8.3"
    },
    "private": true,
    "devDependencies": {
        "@angular/cli": "^1.7.4",
        "@types/cors": "^2.8.3",
        "@types/jasmine": "^2.6.6",
        "ts-loader": "^3.5.0",
        "webpack-node-externals": "^1.7.2"
    }
    
    0 回复  |  直到 6 年前
        1
  •  20
  •   Matthew Mullin    6 年前

    随着Firebase函数V2.0的发布,它们似乎已经在Firebase管理SDK包中添加了时间戳支持。

    看看官方文件 here

    import { firestore } from 'firebase-admin';
    ...
    const now = firestore.Timestamp.now()
    
        2
  •  5
  •   Doug Stevenson    6 年前

    此时此刻,时间戳在最新版本的 @google-cloud/firestore API docs . 也许它会在下一个版本的 .

        3
  •  3
  •   Hamiora    6 年前

    我遇到了同样的问题,因此在这里为Firebase Firestore时间戳创建了一个基本的节点模块 https://www.npmjs.com/package/firebase-firestore-timestamp

    基本代码端口来自 https://www.gstatic.com/firebasejs/4.13.0/firebase-firestore.js

        4
  •  1
  •   Bishoy Hanna    5 年前

    捕捉 参数。你可以如下使用它。(对我有效)

    exports.newUserCreated = functions.firestore.document('users/{userId}').onCreate(async (snap, context) => {
    firestore.collection(`users/${userID}/lists`).add({
        'created_time': snap.updateTime,
        'name':'new list name',
    }).then(documentReference => {
        console.log("list created");
        return null;
      }).catch(error => {
        console.error('Error creating list', error);
        process.exit(1);
    });
    

        5
  •  -1
  •   Steven Soroka    5 年前

    这在node对我有效:

    firebase = require('firebase')
    firebase.firestore.Timestamp