将角消防员图书馆放置 – II

>以前,我们创建了自己的firestore getters来返回适当的观察力,从而将诺言转变为可冷观察的诺言。今天,让我们继续使用其他命令,以正确地映射我们的数据。

>

映射数据

>现在我们不依赖rxfire返回映射的文档id,我们将创建自己的转换器。

“ firestore有一个内置的converter withconverter to conconter tor map to and firestore。不,谢谢。我们将从这里拿走。

getdoc()返回具有id的文档napshot,以及上述数据()。 getdocs()返回带有docs数组的querysnapshot,除其他外,这是返回的documentsnapshot对象。我们的类别模型现在看起来像这样:

// category.model// mapping new instanceexport interface icategory {  name: string | null;  id: string | null;  key?: string;}// static class or export functions, it's a designers choiceexport class category {  public static newinstance(data: querydocumentsnapshot): icategory {    if (data === null) {      return null;    }    const d = data.data();    return {      id: data.id,      name: d['name'],      key: d['key']    };  }  // receives querysnapshot and maps out the `data() ` and id  public static newinstances(data: querysnapshot): icategory[] {    // read docs array     return data.docs.map(n => category.newinstance(n));  }}

因此,现在的服务调用看起来像这样:

// category.service getcategories(params: iwhere[] = []): observable {    // ...    return from(getdocs(_query)).pipe(      map((res: querysnapshot) => {        // here map        return category.newinstances(res);      })    );}getcategory(id: string): observable {    return from(getdoc(doc(this.db, 'categories', id))).pipe(      map((res: documentsnapshot) => {        // map        return category.newinstance(res);      }),    );}

>让我们看看什么adddoc()返回。

>

创建文档

>我创建了一个带有名称和键的快速表单,添加类别,以及一个服务呼叫以创建类别:

// components/categories.listaddnew() {    // read form:    const newcat: partial = this.fg.value;    this.categoryservice.createcategory(newcat).subscribe({      next: (res) => {        // the category list should be updated here       console.log(res);      }    });}

>该服务有望返回可观察到的,以下内容可能无法将其删除,返回的对象是一个文档重新率,仅是对具有id创建的文档的引用。

// category.servicecreatecategory(category: partial): observable {    return from(adddoc(collection(this.db, 'categories'), category)).pipe(      map(res => {        // i have nothing but id!        return {...category, id: res.id};      })    );}

>可能看起来不错,但是我不希望在不浏览映射器的情况下直接使用id,解决方案可以像单独的映射器一样简单,或者我们可以稍微适应newinstance

// category.model// adjust newinstance to accept partial categorypublic static newinstance(data: documentsnapshot | partial, id?: string): icategory {    if (data === null) {      return null;    }    const d = data instanceof documentsnapshot ? data.data() : data;    return {      id: data.id || id, // if data.id doesnt exist (as in adddoc)      name: d['name'],      key: d['key']    };}

然后,在服务呼叫中,我们通过返回的id

通过原始类别

// category.servicecreatecategory(category: partial): observable {    return from(adddoc(collection(this.db, 'categories'), category)).pipe(      map(res => {        // update to pass category and res.id        return category.newinstance(category, res.id);      }),    );}

firestore语法的奇怪案例

>以下方法是如此相同,如果您不区分它们,您可能会在50岁之前失去头发。因此,我决定列出它们,然后忘记它们。

doc(this.db,“类别”,“ someid”)返回新文档或现有文档的文档retreference

doc(collection(this.db,’cantories’))返回新生成的id >

setdoc(_document_reference,{… newcategory},选项)设置文档数据,并在文档参考

中保存提供的id

adddoc(collection(this.db,’cantories’),{… newcategory});添加带有自动生成id的文档(这是doc(collection …)然后setdoc())>的快捷方式updatedoc(doc(this.db,’categories’,’staust_id’),partial_category)这会更新现有文档(doc(db …)的快捷键(db …),然后使用现有id)进行setdoc()>从前两个开始激起了混乱,它们看起来是如此相似,但是它们是不同的>

// find document reference, or create it with new idconst categoryref = doc(this.db, 'categories', '_somedocumentreferenceid');// create a document reference with auto generated idconst categoryref = doc(collection(this.db, 'categories'));

现在,返回的参考文档可用于创建实际文档,或对其进行更新。因此,预计将通过setdoc 成功

// then use the returned reference to setdoc, to add a new documentsetdoc(categoryref, {name: 'bubbles', key: 'bubbles'});// pass partial document with options: merge to partially update an existing documentsetdoc(existingcategoryref, {name: 'bubble'}, {merge: true});

>如果文档不存在wit合并设置为true,它将创建一个带有部分数据的新文档。不好。小心。安全的选项是最后两个:

>

// add a new documnet with a new generated idadddoc(collection(this.db, 'categories'), {name: 'bubbles', key: 'bubbles'});// update and existing document, this will throw an error if non existentupdatedoc(existingcategoryref, {name: 'bubbles'})

出于插图目的,这是创建新类别

的另一种方法

// an alternative way to createcreatecategory(category: partial): observable {    // new auto generated id    const ref = doc(collection(this.db, 'categories'));    return from(setdoc(ref, category)).pipe(       map(_ => {         // response is void, id is in original ref         return category.newinstance(category, ref.id);       })    );}

更新文档

>在上面的构建中,我为类别详细信息创建了一个快速表单以允许更新。我仍然会通过所有字段,但是我们总是可以通过部分字段。

>

// category.sevice// id must be passed in categoryupdatecategory(category: partial): observable {    return from(updatedoc(doc(this.db, 'categories', category.id), category)).pipe(      map(_ => {        // response is void        // why do we do this? because you never know in the future what other changes you might need to make before returning        return category.newinstance(category);      })    );}

这是概念的证明,有一些方法可以拧紧松动的末端,例如强迫id通过,检查不存在的文档,返回不同的数据形状等。

>
使用它,收集表格,并捕获id:>

// categories/list.componentupdate(category: icategory) {    // gather field values    const cat: partial = this.ufg.value;    // make sure the id is passed    this.categoryservice.updatecategory({...cat, id: category.id}).subscribe({      next: (res) => {        console.log(res); // this has the same category after update      }    });  }

删除文档

这是直截了当的,我们可能会选择退还布尔值以获得成功。
>

// category.sevicedeletecategory(id: string): observable {    return from(deletedoc(doc(this.db, 'categories', id))).pipe(      // response is void, but we might want to differentiate failures later      map(_ => true)    );}

我们只是通过传递id

来称其为

// category/list.componentdelete(category: icategory) {    this.categoryservice.deletecategory(category.id).subscribe({      next: (res) => {        console.log('success!', res);      }    });}

>没有直截了当的批量删除方式。让我们继续前进。

负责任地查询

>我们创建了一个iwher模型,以允许将任何查询传递到我们的类别列表。但是,我们应该控制在模型中查询的字段,并保护我们的组件免受现场变化的影响。我们还应该控制可以询问的内容,以及如何始终领先于火箱上的任何隐藏价格。

在我们的iwhere模型中,我们可以添加ifieldoptions模型。这是标签而不是名称的一个示例,以说明我们如何保护我们的组件免受火灾的变化。

// where.model// the param fields object (yes its plural)export interface ifieldoptions {    label?: string; // exmaple    key?: string;    // other example fields    month?: date;    recent?: boolean;    maxprice?: number;}// map fields to where conditions of the proper firestore keysexport const maplistoptions = (options?: ifieldoptions): iwhere[] => {    let c: any[] = [];    if (!options) return [];    if (options.label) {      // mapping label to name      c.push({ fieldpath: 'name', opstr: '==', value: options.label });    }    if(options.key) {      c.push({ fieldpath: 'key', opstr: '==', value: options.key });    }    // maxprice is a less than or equal operator    if (options.maxprice) {        c.push({ fieldpath: 'price', opstr: '=', value: lastweek });    }    return c;}

我们服务的更改就像这样

>

// category.sevice// accept options of specific fieldsgetcategories(params?: ifieldoptions): observable {    // translate fields to where:    const _where: any[] = (mapfieldoptions(fieldoptions))        .map(n => where(n.fieldpath, n.opstr, n.value));    // pass the where to query    const _query = query(collection(this.db, this._url), ..._where);    // ... getdocs}

这是如何以最高价格获取一组文档的示例:

// example usagesomething$ = someservice.getlist({maxprice: 344});

这更有意义。我添加了一个日期示例,请注意,即使firestore日期为type tymestamp,在javascript日期上的操作正常。该示例的想法是说明组件不应该真正知道实现的详细信息,因此获得“最新文档”,例如应该像这样的

>

// examplesomething$ = someservice.getlist({recent: true});

另一个示例是获取日期,firestore直接处理javascript日期:>

// where.modelconst mapmonth = (month: date): iwhere[] => {  const from = new date(month);  const to = new date(month);  from.setdate(1);  from.sethours(0, 0, 0, 0);  to.setmonth(to.getmonth() + 1);  to.sethours(0, 0, 0, 0); // the edge of next month, is last day this month  let c: iwhere[] = [    { fieldpath: 'date', opstr: '>=', value: from },    { fieldpath: 'date', opstr: '<=', value: to }  ];  return c;};

这是按预期工作的。

时间戳

firestore参考时间戳。

在查询时,此类可能不会有所作为,但是如果您有一个日期字段,并且希望保存用户提供的日期,则最好使用firestore timestamp类进行转换。 firestore时间戳和javascript日期之间的差异是微妙的。如此微妙,我什至看不到它!我认为这是四舍五入的等级。

>

// somemodel// use timestamp class to map from and to datesconst jsdate = new date();// adddoc withconst newdata = {    fbdate: timestamp.fromdate(jsdate)}// documentsnapshot returns data() with date field, the type is timestamp// use todate to convert to js datereturn data['fbdate'].todate();

firestore lite

firebase为firestore提供了简单crud的lite版本,到目前为止,我们仅使用了lite版本中的那些。我更改了所有
导入{…}来自’@angular/fire/firestore’;

>进入

导入{…}来自’@angular/fire/firestore/lite’;

>

构建块的确很小。我个人项目中减少的主要部分从502 kb下降到352 kb。

拦截

>使用httpclient,我们使用了截距函数来添加加载效果,那么我们如何使用解决方案来做到这一点?我们可以将所有呼叫调查到一个照顾它的http服务。我们的新服务应该与此有关:

// http.service@injectable({ providedin: 'root' })export class httpservice {  public run(fn: observable): observable {    // show loader here    showloader();    // return function as is    return fn      .pipe(        // hide loader        finalize(() => hideloader()),        // debug and catcherrors as well here      );  }}

然后在服务中

// category.serviceprivate httpservice = inject(httpservice);getcategories(params?: iwhere[]): observable {    // ...    // wrap in run    return this.httpservice.run(from(getdocs(q)).pipe(      map((res: querysnapshot) => {        return category.newinstances(res);      })    ));}

>上面的一个设计问题是类型检查的丢失,因为内部函数返回可观察到的。这可以用通用
修复

// http.service// ...public run(fn: observable): observable {    // ...}

然后这样称呼:

>

// category.servicereturn this.httpService.run(from(getDocs(q)).pipe(  map((res: QuerySnapshot) => {    return Category.NewInstances(res);  })));

>查看我们先前使用状态管理创建的加载效果。我们需要的只是注入州服务,然后呼叫显示和隐藏。这使用了良好的ol’rxjs,我调查了信号,看不到它如何替换rxj,而不会造成大混乱。可能是一个罚款星期二。

就是这样。在50岁之前不要丢发头发。

你上火了吗?继续说话。还没有结束。

资源

stackblitz project

firesstore docs

相关文章

>在angular

中使用rxj创建负载效果

将angular fire firestore库使用-ii- sekrab车库 角燃箱炸弹群。以前,我们创建了自己的firestore获取器,以返回适当的观察力,从而将诺言转变为可感冒的诺言。今天,让我们继续使用其他命令,以正确地映射我们的数据。

garage.sekrab.com

以上就是将角消防员图书馆放置 – II的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1501208.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年12月19日 23:21:53
下一篇 2025年12月19日 23:22:07

相关推荐

  • Uniapp 中如何不拉伸不裁剪地展示图片?

    灵活展示图片:如何不拉伸不裁剪 在界面设计中,常常需要以原尺寸展示用户上传的图片。本文将介绍一种在 uniapp 框架中实现该功能的简单方法。 对于不同尺寸的图片,可以采用以下处理方式: 极端宽高比:撑满屏幕宽度或高度,再等比缩放居中。非极端宽高比:居中显示,若能撑满则撑满。 然而,如果需要不拉伸不…

    2025年12月24日
    400
  • 如何让小说网站控制台显示乱码,同时网页内容正常显示?

    如何在不影响用户界面的情况下实现控制台乱码? 当在小说网站上下载小说时,大家可能会遇到一个问题:网站上的文本在网页内正常显示,但是在控制台中却是乱码。如何实现此类操作,从而在不影响用户界面(UI)的情况下保持控制台乱码呢? 答案在于使用自定义字体。网站可以通过在服务器端配置自定义字体,并通过在客户端…

    2025年12月24日
    800
  • 如何在地图上轻松创建气泡信息框?

    地图上气泡信息框的巧妙生成 地图上气泡信息框是一种常用的交互功能,它简便易用,能够为用户提供额外信息。本文将探讨如何借助地图库的功能轻松创建这一功能。 利用地图库的原生功能 大多数地图库,如高德地图,都提供了现成的信息窗体和右键菜单功能。这些功能可以通过以下途径实现: 高德地图 JS API 参考文…

    2025年12月24日
    400
  • 如何使用 scroll-behavior 属性实现元素scrollLeft变化时的平滑动画?

    如何实现元素scrollleft变化时的平滑动画效果? 在许多网页应用中,滚动容器的水平滚动条(scrollleft)需要频繁使用。为了让滚动动作更加自然,你希望给scrollleft的变化添加动画效果。 解决方案:scroll-behavior 属性 要实现scrollleft变化时的平滑动画效果…

    2025年12月24日
    000
  • 如何为滚动元素添加平滑过渡,使滚动条滑动时更自然流畅?

    给滚动元素平滑过渡 如何在滚动条属性(scrollleft)发生改变时为元素添加平滑的过渡效果? 解决方案:scroll-behavior 属性 为滚动容器设置 scroll-behavior 属性可以实现平滑滚动。 html 代码: click the button to slide right!…

    2025年12月24日
    500
  • 如何选择元素个数不固定的指定类名子元素?

    灵活选择元素个数不固定的指定类名子元素 在网页布局中,有时需要选择特定类名的子元素,但这些元素的数量并不固定。例如,下面这段 html 代码中,activebar 和 item 元素的数量均不固定: *n *n 如果需要选择第一个 item元素,可以使用 css 选择器 :nth-child()。该…

    2025年12月24日
    200
  • 使用 SVG 如何实现自定义宽度、间距和半径的虚线边框?

    使用 svg 实现自定义虚线边框 如何实现一个具有自定义宽度、间距和半径的虚线边框是一个常见的前端开发问题。传统的解决方案通常涉及使用 border-image 引入切片图片,但是这种方法存在引入外部资源、性能低下的缺点。 为了避免上述问题,可以使用 svg(可缩放矢量图形)来创建纯代码实现。一种方…

    2025年12月24日
    100
  • 如何让“元素跟随文本高度,而不是撑高父容器?

    如何让 元素跟随文本高度,而不是撑高父容器 在页面布局中,经常遇到父容器高度被子元素撑开的问题。在图例所示的案例中,父容器被较高的图片撑开,而文本的高度没有被考虑。本问答将提供纯css解决方案,让图片跟随文本高度,确保父容器的高度不会被图片影响。 解决方法 为了解决这个问题,需要将图片从文档流中脱离…

    2025年12月24日
    000
  • 为什么 CSS mask 属性未请求指定图片?

    解决 css mask 属性未请求图片的问题 在使用 css mask 属性时,指定了图片地址,但网络面板显示未请求获取该图片,这可能是由于浏览器兼容性问题造成的。 问题 如下代码所示: 立即学习“前端免费学习笔记(深入)”; icon [data-icon=”cloud”] { –icon-cl…

    2025年12月24日
    200
  • 如何利用 CSS 选中激活标签并影响相邻元素的样式?

    如何利用 css 选中激活标签并影响相邻元素? 为了实现激活标签影响相邻元素的样式需求,可以通过 :has 选择器来实现。以下是如何具体操作: 对于激活标签相邻后的元素,可以在 css 中使用以下代码进行设置: li:has(+li.active) { border-radius: 0 0 10px…

    2025年12月24日
    100
  • 如何模拟Windows 10 设置界面中的鼠标悬浮放大效果?

    win10设置界面的鼠标移动显示周边的样式(探照灯效果)的实现方式 在windows设置界面的鼠标悬浮效果中,光标周围会显示一个放大区域。在前端开发中,可以通过多种方式实现类似的效果。 使用css 使用css的transform和box-shadow属性。通过将transform: scale(1.…

    2025年12月24日
    200
  • 为什么我的 Safari 自定义样式表在百度页面上失效了?

    为什么在 Safari 中自定义样式表未能正常工作? 在 Safari 的偏好设置中设置自定义样式表后,您对其进行测试却发现效果不同。在您自己的网页中,样式有效,而在百度页面中却失效。 造成这种情况的原因是,第一个访问的项目使用了文件协议,可以访问本地目录中的图片文件。而第二个访问的百度使用了 ht…

    2025年12月24日
    000
  • 如何用前端实现 Windows 10 设置界面的鼠标移动探照灯效果?

    如何在前端实现 Windows 10 设置界面中的鼠标移动探照灯效果 想要在前端开发中实现 Windows 10 设置界面中类似的鼠标移动探照灯效果,可以通过以下途径: CSS 解决方案 DEMO 1: Windows 10 网格悬停效果:https://codepen.io/tr4553r7/pe…

    2025年12月24日
    000
  • 使用CSS mask属性指定图片URL时,为什么浏览器无法加载图片?

    css mask属性未能加载图片的解决方法 使用css mask属性指定图片url时,如示例中所示: mask: url(“https://api.iconify.design/mdi:apple-icloud.svg”) center / contain no-repeat; 但是,在网络面板中却…

    2025年12月24日
    000
  • 如何用CSS Paint API为网页元素添加时尚的斑马线边框?

    为元素添加时尚的斑马线边框 在网页设计中,有时我们需要添加时尚的边框来提升元素的视觉效果。其中,斑马线边框是一种既醒目又别致的设计元素。 实现斜向斑马线边框 要实现斜向斑马线间隔圆环,我们可以使用css paint api。该api提供了强大的功能,可以让我们在元素上绘制复杂的图形。 立即学习“前端…

    2025年12月24日
    000
  • 图片如何不撑高父容器?

    如何让图片不撑高父容器? 当父容器包含不同高度的子元素时,父容器的高度通常会被最高元素撑开。如果你希望父容器的高度由文本内容撑开,避免图片对其产生影响,可以通过以下 css 解决方法: 绝对定位元素: .child-image { position: absolute; top: 0; left: …

    2025年12月24日
    000
  • CSS 帮助

    我正在尝试将文本附加到棕色框的左侧。我不能。我不知道代码有什么问题。请帮助我。 css .hero { position: relative; bottom: 80px; display: flex; justify-content: left; align-items: start; color:…

    2025年12月24日 好文分享
    200
  • 前端代码辅助工具:如何选择最可靠的AI工具?

    前端代码辅助工具:可靠性探讨 对于前端工程师来说,在HTML、CSS和JavaScript开发中借助AI工具是司空见惯的事情。然而,并非所有工具都能提供同等的可靠性。 个性化需求 关于哪个AI工具最可靠,这个问题没有一刀切的答案。每个人的使用习惯和项目需求各不相同。以下是一些影响选择的重要因素: 立…

    2025年12月24日
    300
  • 如何用 CSS Paint API 实现倾斜的斑马线间隔圆环?

    实现斑马线边框样式:探究 css paint api 本文将探究如何使用 css paint api 实现倾斜的斑马线间隔圆环。 问题: 给定一个有多个圆圈组成的斑马线图案,如何使用 css 实现倾斜的斑马线间隔圆环? 答案: 立即学习“前端免费学习笔记(深入)”; 使用 css paint api…

    2025年12月24日
    000
  • 如何使用CSS Paint API实现倾斜斑马线间隔圆环边框?

    css实现斑马线边框样式 想定制一个带有倾斜斑马线间隔圆环的边框?现在使用css paint api,定制任何样式都轻而易举。 css paint api 这是一个新的css特性,允许开发人员创建自定义形状和图案,其中包括斑马线样式。 立即学习“前端免费学习笔记(深入)”; 实现倾斜斑马线间隔圆环 …

    2025年12月24日
    100

发表回复

登录后才能评论
关注微信