Firebase Firestore 正在更改 phone 个数字

Firebase Firestore changing phone numbers

我使用 Firebase 已经一年多了。今天我做了一些测试,突然之间,Firebase 立即将 phone 数字更改为随机数。我想将 phone 数字作为字符串保存到 Firestore 中,但每次更新 Firestore 的文档时,phone 数字字符串都会转换为随机数。

谁能给我解释一下?是因为 GDPR 还是隐私问题?

更新文档前:

更新Doc后(输入:06601234567)变成随机数(71032704):

我正在做一个 Nuxt 项目。

更新:我在我的 updateDoc 函数中实现了错误的 nullchecking 方法。如果没有来自用户的输入,我想将 telefonnummer 字段设置为 null。显然,它没有用。

  await updateDoc(doc(db, 'test', userid), {

              //Input: 066012345678

              // Firestore --> -77123412
              telefonnummer: this.telefonnummer | null,

              // Firestore --> 066012345678 --> nice
              telefonnummer: this.telefonnummer,