firebase auth_如何使用auth和实时数据库构建Firebase Angular应用

firebase auth

by Zdravko Kolev

通过Zdravko Kolev

如何使用auth和实时数据库构建Firebase Angular应用 (How to build a Firebase Angular app with auth and a real-time database)

For a long time, I was looking for a good Portfolio web app that can help me to easily track my Cryptocurrency profits/losses until I’ve decided to develop such on my own with the help of Firebase and Angular! Yes, it’s that easy, let me explain to you why.

长期以来,我一直在寻找一个好的Portfolio Web应用程序,该应用程序可以帮助我轻松跟踪我的加密货币盈亏,直到我决定借助Firebase和Angular自行开发此类资产! 是的,就是这么简单,让我向您解释原因。

Firebase gives the perfect tooling for applications with user authentication and Real-time database storage needs. It provides rich documentation with a variety of dev examples to help anyone gain a better understanding of how to create stellar apps.

Firebase为具有用户身份验证和实时数据库存储需求的应用程序提供了完美的工具。 它提供了丰富的文档以及各种开发示例,以帮助任何人更好地了解如何创建出色的应用程序。

I have covered the Angular application bootstrapping, using Ignite UI CLI, in another blog post.

我已经在另一篇博客文章中介绍了使用Ignite UI CLI引导Angular应用程序。

This article aims to:

本文旨在:

  • Go through the Firebase installation and setup.

    完成Firebase的安装和设置。
  • Set up Firebase Authentication.

    设置Firebase身份验证。
  • Implement Real-time database storing and synchronization.

    实现实时数据库存储和同步。

  • Add Observable data services.

    添加可观察的数据服务。
  • Visualize the data in an Angular application.

    在Angular应用程序中可视化数据 。

配置Firebase帐户 (Configure a Firebase account)

I want to go through the steps that we’ve taken to set up the Portfolio Firebase account. Projects are created from the Firebase console by choosing Add a new project. Once the Create project form is submitted you will see the following Project Overview.

我想完成设置投资组合Firebase帐户所采取的步骤。 通过选择添加新项目从Firebase控制台创建项目。 提交创建项目表单后,您将看到以下项目概述。

Under the Project Overview section, you can find all development tools that are used for Authentication and Data storing. Here is also located the configuration which is used in the Portfolio Web App. This configuration is generated by pressing Add Firebase to your web app, and it is later added in application’s app.module.ts file.

在“项目概述”部分下,您可以找到用于身份验证和数据存储的所有开发工具。 还可以找到投资组合Web应用程序中使用的配置。 通过将Add Firebase添加到您的Web应用程序来生成此配置,然后将其添加到应用程序的app.module.ts文件中。

Let’s get back to the sidebar on the left and select Authentication. From here we have access to the Sign-in methods that we need in the app. Navigate to the Sign-in tab, there you can see the providers that are enabled and used in the Portfolio application — Google, Facebook and Email/Password provider.

让我们回到左侧的边栏中,然后选择身份验证 。 从这里,我们可以访问应用程序中所需的登录方法 。 导航到“登录”选项卡,您可以在“投资组合”应用程序中看到已启用和使用的提供商-Google ,Facebook和电子邮件/密码提供商

Sign-in providers let users authenticate with Firebase using their Facebook and Google accounts by integrating their logins into the app. As for the Email/password provider, it represents a simple authentication mechanism by using only email and password. Firebase Auth provides built-in validation rules verifying the user entries, so we don’t need to configure something additional here.

登录提供商可以将用户的登录信息集成到应用中,从而使用户可以使用其Facebook和Google帐户向Firebase进行身份验证。 对于电子邮件/密码提供程序,它仅使用电子邮件和密码表示一种简单的身份验证机制。 Firebase Auth提供了内置的验证规则来验证用户条目,因此我们无需在此处进行其他配置。

The “trickiest” part here was the Facebook provider configuration because we needed to have a Facebook application in order to authenticate the login. We’ve created a FB app from Facebook Developers which provided us with the App ID and App Secret requested from Firebase.

这里最“棘手”的部分是Facebook提供程序配置,因为我们需要一个Facebook应用程序才能对登录进行身份验证。 我们已经从Facebook Developers创建了FB应用,该应用为我们提供了Firebase要求的App ID和App Secret。

Both API ID and Secret should be filled when enabling the Facebook provider. As for the Auth redirect URI (from the provider window) it should be pasted under Facebook/Facebook Login/Products section/Valid Auth Redirect URIs.

启用Facebook提供程序时, API IDSecret均应填写。 至于Auth重定向URI (从提供者窗口),应将其粘贴在Facebook/Facebook Login/Products section/Valid Auth Redirect URIs

Let’s continue with the Firebase console. From the Database view page, we’ve created a Real-time Database.

让我们继续使用Firebase控制台。 从数据库视图页面,我们创建了一个实时数据库。

In this view, we can find information about the application data items and write/read security rules. Below are the rules used by the Portfolio application:

在此视图中,我们可以找到有关应用程序数据项和写入/读取安全规则的信息。 以下是投资组合应用程序使用的规则:

{  "rules": {    "items": {      "$uid": {        ".read": "$uid === auth.uid",        ".write": "$uid === auth.uid"      }    }  }}

This Security Rule configuration will allow only authenticated users to be able to read and write in our database. If you want to learn how to define more advanced rules, I strongly recommend checking out the Official Security & Rules section.

此安全规则配置将仅允许经过身份验证的用户读取和写入我们的数据库。 如果您想学习如何定义更高级的规则,强烈建议您查看“ 官方安全和规则”部分。

Okay, where were we? Now that we’ve gone through the Portfolio Firebase account creation, let’s see how the Firebase development project was created.

好吧,我们在哪里? 现在,我们已经完成了投资组合 Firebase帐户的创建,让我们看看Firebase开发项目是如何创建的。

If we didn’t have a project created already, I would have recommended starting with installing the firebase CLI, that provides a variety of tools for managing and deploying Firebase projects. BUT we’ve bootstrapped the Portfolio Angular Project with Ignite UI CLI, so we just needed to install AngularFire and Firebase from npm. We need both packages in order to communicate with Firebase. AngularFire is the official library for Firebase and Angular development.

如果我们还没有创建项目,那么我建议您从安装firebase CLI开始 ,它提供了多种工具来管理和部署Firebase项目。 但是,我们已经使用Ignite UI CLI引导了Portfolio Angular项目 ,因此我们只需要从npm安装AngularFireFirebase 。 我们需要两个软件包才能与Firebase进行通信。 AngularFire是Firebase和Angular开发的官方库。

npm install firebase @angular/fire --save

All AngularFire modules that are used in the application are added in the app.module.ts file:

应用程序中使用的所有AngularFire模块都添加到app.module.ts文件中:

  • FirestoreModule is needed for the database features like working with collections, queries, and services for data streaming and manipulation.

    数据库功能(例如与集合,查询和数据流和处理服务一起使用)需要FirestoreModule

  • FireAuthModule is needed for authentication features like monitoring authentication state, Log-in providers and security.

    FireAuthModule 监视身份验证状态,登录提供程序和安全性等身份验证功能所需的。

  • FireDatabaseModule allows us to work with Realtime databases. It’s very efficient for mobile and web apps that require synced states across clients in Realtime.

    FireDatabaseModule允许我们使用实时数据库。 对于需要实时在客户端之间同步状态的移动和Web应用程序,它非常高效。

The only common module that is not used in the Portfolio app is AngularFireStorageModule. You can use this module to quickly and easily store and serve user-generated content like photos and videos as well as monitor uploads and metadata associated with files.

组合应用程序中未使用的唯一通用模块是AngularFireStorageModule。 您可以使用此模块快速,轻松地存储和提供用户生成的内容(例如照片和视频),并监视与文件关联的上载和元数据。

Now that we know how the app was configured initially, we can take a look at the other Firebase features that are used.

现在我们知道了应用程序的最初配置方式,接下来我们可以看看所使用的其他Firebase功能

认证方式 (Authentication)

We use AngularFireAuth service to monitor the app authentication state. AngularFireAuth.auth returns an initialized firebase.auth.Auth instance, allowing us to log users in and out. The app demonstrates Sign-in capabilities using three providers: Facebook, Google, and Email.

我们用 AngularFireAuth服务 监视应用程序身份验证状态。 AngularFireAuth.auth返回一个初始化firebase.auth.Auth实例,让我们的用户登录和退出。 该应用程序使用三种提供程序来演示登录功能:Facebook,Google和电子邮件。

Firebase user instance is kept for every provider linked to the user, and when a user is registered or signs in, that user becomes the current user of the Auth instance. The instance persists the user’s state so that refreshing the page or restarting the application doesn’t lose the user’s information.

将为每个与该用户链接的提供程序保留Firebase用户实例,并且当用户注册或登录时,该用户将成为Auth实例的当前用户。 该实例将保持用户的状态,因此刷新页面或重新启动应用程序不会丢失用户的信息。

We use signInWithRedirect method for both Facebook and Google providers, in order to sign in by redirecting to the sign-in page. Password-based account creation is used for the Email sign-in provider, createUserWithEmailAndPassword and signInWithEmailAndPassword are the methods responsible for the user account creation and sign-in.

我们对Facebook和Google提供程序都使用signInWithRedirect方法,以便通过重定向到登录页面进行登录。 基于密码的帐户创建用于电子邮件登录提供程序createUserWithEmailAndPassword signInWithEmailAndPassword 是负责创建和登录用户帐户的方法。

I recommend the official Firebase docs for more detailed information on authentication and user lifecycle.

我建议使用Firebase官方文档,以获取有关身份验证和用户生命周期的更多详细信息。

实时数据库操作 (Real-time Database Actions)

Firebase offers two cloud-based, client-accessible database solutions, and we are using Firebase’s original database — Realtime. Check out the differences between Realtime and Cloud firestore on the official documentation page.

Firebase提供了两个基于云的,客户端可访问的数据库解决方案,并且我们正在使用Firebase的原始数据库-Realtime。 在官方文档页面上查看RealtimeCloud firestore之间的区别。

AngularFireDatabase and AngularFireList services are used in the Portfolio app to retrieve, save and remove data easily.

AngularFireDatabase AngularFireList 组合应用程序中使用服务来轻松检索,保存和删除数据。

AngularFireDatabase can be injected through the constructor of a component or @Injectable() service. In our case we use the second approach:

AngularFireDatabase 可以通过组件的构造函数或@Injectable()注入 服务。 在我们的例子中,我们使用第二种方法 :

Data is retrieved through the AngularFireDatabase service, which fills Observable list of BlockItems. AngularFire provides methods like snapshotChanges() that returns Observable of data as a synchronized array. It is very handy if you want to limit event actions, like added, changed, removed and moved. By default, it listens to all four, however, you may only be interested in one of these events and you can specify which of them you’d like to use. In our application, we are subscribed to all of them.

通过AngularFireDatabase检索数据 服务,该服务填充BlockItems Observable列表。 AngularFire 提供诸如snapshotChanges()类的方法,这些方法以同步数组的形式返回Observable数据。 如果要限制事件动作(例如添加更改删除移动) ,这非常方便。 默认情况下,它会监听全部四个事件,但是,您可能只对其中一个事件感兴趣,并且可以指定要使用的事件。 在我们的应用程序中,我们已订阅所有这些。

Adding a new item, updating an existing one, or removing it from the list is achieved by using push(), update() and remove() methods.

通过使用push()update()remove()方法,可以添加新项目,更新现有项目或将其从列表中remove()

Each data operation method returns a promise, although we don’t need to use the completion promise to indicate success because the real-time database keeps the list in sync.

每个数据操作方法都返回一个Promise,尽管我们不需要使用完成Promise来表示成功,因为实时数据库使列表保持同步。

可观察的 (Observables)

CoinItem服务 (CoinItem service)

Cryptocompare API service manages async data and emits multiple values at a time with Observables. We use HttpClient get()method to request the data from the resource and subscribe to it, in order to transform it to Observable Array of CoinItem objects, which will be used later by our igxGrid, igxList, and igxCard components.

Cryptocompare API服务使用Observables管理异步数据并一次发出多个值。 我们使用HttpClient get( )方法从资源中请求数据并进行订阅,以便将其转换为CoinItem Observable Array 对象,稍后将由我们的igxGridigxListigxCard组件使用。

Rx.js allows us to cache the result of the HTTP Request. We retrieve this data initially, cache it and use the cached version during the application’s lifetime. The combination of publishReply(1, 300000) and refCount() does the following.

Rx.js允许我们缓存HTTP请求的结果。 我们首先检索此数据,对其进行缓存,并在应用程序的生命周期内使用缓存的版本。 publishReply(1, 300000)refCount()执行以下操作。

publishReply(1, 300000) tells Rx to cache the latest emitted value and to stay valid for 5 minutes. After that time, it will invalidate the cache.

publishReply(1,300000)告诉Rx缓存最新发出的值并保持有效5分钟。 在那之后,它将使缓存无效。

refCount() tells Rx to keep the Observable alive as long as there are any Subscribers.

refCount()告诉Rx只要有任何订阅服务器,就保持Observable处于活动状态。

Now after we subscribe to the Coins list, the result will be cached, and we won’t need to make another HTTP Request.

现在,当我们订阅硬币列表之后,结果将被缓存,并且我们不需要发出另一个HTTP请求。

BlockItem服务 (BlockItem service)

Portfolio Crypto Coins data is ensured by getItemsList() method that returns Observable BlockItem array to which the igxGrid component is subscribed to. Only authenticated users can use this service because of the AngularFireList that we manipulate is associated with unique user ids.

通过返回Observable BlockItem数组的getItemsList()方法确保投资组合加密硬币数据 igxGrid组件订阅的对象。 由于我们操作的AngularFireList与唯一的用户ID相关联,因此只有经过身份验证的用户才能使用此服务。

可视化数据 (Visualize the data)

For the visualization, we use UI Components from the Ignite UI for Angularlibrary. These components are responsible for data handling while providing access to custom templates and real-time updates, with intuitive API, by using minimal amount code.

对于可视化,我们使用Ignite UI for Angular库中的UI组件。 这些组件负责数据处理,同时使用最少的代码通过直观的API提供对自定义模板和实时更新的访问。

igxGrid (igxGrid)

Grids [data] property binding is used to pass the returned BlockItem array. Each <igx-column> represents a field of the object and it is used to define features like editing and sorting. The columns are templatable, and with the help of Angular pipes, we can declare display-value transformations in them easily. We use a decimal pipe to change the minimum number of integer digits before the decimal point.

网格 [data]属性绑定用于传递返回的BlockItem数组。 每个<igx-colu mn>代表对象的一个​​字段,它用于定义诸如编辑和排序之类的功能。 这些列是可模板化的,借助Angular管道的帮助,我们可以轻松地在其中声明显示值转换。 我们使用十进制管道来更改小数点前的最小整数位数。

The component provides straightforward event handlers and API for CRUD operations. Handlers like updateRow and deleteRow are implementing additional logic like AngularFireList manipulation and coin item restore logic with the igxSnackbar.

该组件为CRUD操作提供了直接的事件处理程序和API。 像处理程序updateRowdeleteRow正在实施类似的附加逻辑AngularFireList操纵和硬币项与恢复逻辑igxSnackbar

igx卡 (igxCard)

Cards are used to provide general information of Crypto coins using CSS Flexbox layout. These Card components can be filtered with the igxFilter directive, which can be used to filter different data sources. igxFilter can be applied as a pipe or as a directive.

卡用于使用CSS Flexbox布局提供加密硬币的常规信息。 可以使用igxFilter指令过滤这些Card组件,该指令可用于过滤不同的数据源。 igxFilter可以用作管道或指令。

igxFinancialChart (igxFinancialChart)

The Chart offers multiple ways in which the data can be visualized and interpreted, once it is returned by the service. There are several display modes for price and volume, and in our case we use chartType=”candle”.

一旦服务返回数据,图表就提供了多种可视化和解释数据的方式。 价格和数量有几种显示模式,在本例中,我们使用chartType=”candle”

The financial chart component analyzes and selects data columns automatically:- Date/Time column to use for x-axis- Open, High, Low, Close, Volume columns or the first 5 numeric columns for y-axis

金融图表组件分析并选择数据列自动: - Date/Time列于使用了x-axis - OpenHighLowCloseVolume列或前5分数值列y-axis

主题化 (Theming)

IgniteUI for Angular bases its component designs on the Material Design Principles and with just a few lines of code, we can easily change the colors, sizes, typography, and overall look and feel of our components.

IgniteUI for Angular的组件设计基于“ 材料设计原则” ,仅需几行代码,我们就可以轻松更改组件的颜色,大小,版式以及整体外观。

Now that we’ve provided all base definitions needed for the igx-theme, and have configured the igx-dark-theme mixin, we need to only apply .light-theme and .dark-theme CSS classes somewhere at DOM element root level and toggle it on button click.

现在,我们已经提供了igx-theme,所需的所有基本定义igx-theme,并配置了igx-dark-theme mixin,我们只需要在DOM元素根目录级别的某个位置应用.light-theme.dark-theme CSS类即可。单击按钮即可切换。

结果 (Result)

结语 (Wrapping up)

Everything is possible with the right tooling. We have created a Portfolio Web application using the full power of the Angular Framework, Firebase Authentication services, and Cloud Database store/synchronization.

使用正确的工具,一切皆有可能。 我们使用Angular Framework,Firebase身份验证服务和Cloud Database存储/同步的全部功能创建了一个Portfolio Web应用程序。

You can find the GitHub repository and the actual portfolio application here.

您可以在此处找到GitHub存储库和实际的投资组合应用程序 。

Feel free to share in the comments below any questions that you have, suggestions as to what can be improved or changed in the app, or any problems that you’ve encountered while configuring your Firebase account or application.

随时在下面的评论中分享您的任何问题,有关可在应用程序中进行哪些改进或更改的建议,或在配置Firebase帐户或应用程序时遇到的任何问题。

翻译自: https://www.freecodecamp.org/news/firebase-angular-application-with-auth-and-realtime-database-ae37fef5859d/

firebase auth

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391800.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Mybatis—多表查询

Mybatis多表查询 一对一查询 一对一查询的模型MapperScannerConfigurer 用户表和订单表的关系为&#xff0c;一个用户有多个订单&#xff0c;一个订单只从属于一个用户 创建Order和User实体 public class Order {private int id;private Date ordertime;private double to…

VS2008 开发设计MOSS工作流 URN 注意了

最近学习MOSS 很苦恼&#xff0c;进度也很慢&#xff0c;最近在学习VS2008开发工作流&#xff0c;其中有结合INFOPATH 2007来做, 出现个BUG或者说是设置的问题,整整花了我一天工作时间&#xff0c;是这样的: 在部署的时候关于URN&#xff0c;大部分的教程都是这样的说的&#…

ArangoDB Foxx service 使用

备注&#xff1a;项目使用的是github https://github.com/arangodb-foxx/demo-hello-foxx1. git clonegit clone https://github.com/arangodb-foxx/demo-hello-foxx.git 2. 安装foxx servicefoxx-manager install demo-hello-foxx /demoapp 3. 效果自动生成的swagger 文档项目…

编译原理 数据流方程_数据科学中最可悲的方程式

编译原理 数据流方程重点 (Top highlight)Prepare a box of tissues! I’m about to drop a truth bomb about statistics and data science that’ll bring tears to your eyes.准备一盒纸巾&#xff01; 我将投放一本关于统计和数据科学的真相炸弹&#xff0c;这会让您眼泪汪…

@ConTrollerAdvice的使用

ConTrollerAdvice&#xff0c;从名字上面看是控制器增强的意思。 在javaDoc写到/*** Indicates the annotated class assists a "Controller".** <p>Serves as a specialization of {link Component Component}, allowing for* implementation classes to be a…

Mybatis—注解开发

Mybatis的注解开发 MyBatis的常用注解 这几年来注解开发越来越流行&#xff0c;Mybatis也可以使用注解开发方式&#xff0c;这样我们就可以减少编写Mapper映射文件了。 Insert&#xff1a;实现新增 Update&#xff1a;实现更新 Delete&#xff1a;实现删除 Select&#x…

道路工程结构计算软件_我从软件工程到产品管理的道路

道路工程结构计算软件by Sari Harrison莎莉哈里森(Sari Harrison) 我从软件工程到产品管理的道路 (My path from software engineering to product management) 以及一些有关如何自己做的建议 (And some advice on how to do it yourself) I am often asked how to make the m…

Vue 指令

下面列举VUE的HTML页面模板指令&#xff0c;并进行分别练习。 1. templates 2. v-if, v-for <div idapp><ol><li v-for"todo in todos>{{ todo.text}}</li></ol> </div><script>app new Vue({ el: #app, data: { return…

iOS-FMDB

2019独角兽企业重金招聘Python工程师标准>>> #import <Foundation/Foundation.h> #import <FMDatabase.h> #import "MyModel.h"interface FMDBManager : NSObject {FMDatabase *_dataBase; }(instancetype)shareInstance;- (BOOL)insert:(MyM…

解决朋友圈压缩_朋友中最有趣的朋友[已解决]

解决朋友圈压缩We live in uncertain times.我们生活在不确定的时代。 We don’t know when we’re going back to school or the office. We don’t know when we’ll be able to sit inside at a restaurant. We don’t even know when we’ll be able to mosh at a Korn co…

西安项目分析

西安物流 西安高考补习 西安艺考 转载于:https://www.cnblogs.com/wpxuexi/p/7294269.html

MapServer应用开发平台示例

MapServer为当前开源WebGIS的应用代表&#xff0c;在西方社会应用面极为广泛&#xff0c;现介绍几个基于它的开源应用平台。 1.GeoMOOSE GeoMoose is a Web Client Javascript Framework for displaying distributed cartographic data. Among its many strengths, it can hand…

leetcode 995. K 连续位的最小翻转次数(贪心算法)

在仅包含 0 和 1 的数组 A 中&#xff0c;一次 K 位翻转包括选择一个长度为 K 的&#xff08;连续&#xff09;子数组&#xff0c;同时将子数组中的每个 0 更改为 1&#xff0c;而每个 1 更改为 0。 返回所需的 K 位翻转的最小次数&#xff0c;以便数组没有值为 0 的元素。如果…

kotlin数据库_如何在Kotlin应用程序中使用Xodus数据库

kotlin数据库I want to show you how to use one of my favorite database choices for Kotlin applications. Namely, Xodus. Why do I like using Xodus for Kotlin applications? Well, here are a couple of its selling points:我想向您展示如何在Kotlin应用程序中使用我…

使用route add添加路由,使两个网卡同时访问内外网

route add命令格式&#xff1a;route [-f] [-p] [Command] [Destination] [mask Netmask] [Gateway] [metric Metric] [if Interface] 通过配置电脑的静态路由来实现同时访问内外网的。电脑的网络IP配置不用变&#xff0c;两个网卡都按照正常配置&#xff08;都配置IP地址、子网…

基于JavaConfig配置的Spring MVC的构建

上一篇讲了基于XML配置的构建&#xff0c;这一篇讲一讲基于JavaConfig的构建。为什么要写这篇文章&#xff0c;因为基于xml配置的构建&#xff0c;本人认为很麻烦&#xff0c;要写一堆的配置&#xff0c;不够简洁&#xff0c;而基于JavacConfig配置的构建符合程序员的编码习惯&…

pymc3 贝叶斯线性回归_使用PyMC3进行贝叶斯媒体混合建模,带来乐趣和收益

pymc3 贝叶斯线性回归Michael Johns, Zhenyu Wang, Bruno Dupont, and Luca Fiaschi迈克尔约翰斯&#xff0c;王振宇&#xff0c;布鲁诺杜邦和卢卡菲亚斯基 “If you can’t measure it, you can’t manage it, or fix it”“如果无法衡量&#xff0c;就无法管理或修复它” –…

webkit中对incomplete type指针的处理技巧

近日在研究webkit的时候发现了一个函数 template<typename T> inline void deleteOwnedPtr(T* ptr) {typedef char known[sizeof(T) ? 1 : -1];if(sizeof(known))delete ptr; } 一开始对这个函数非常费解&#xff0c;为什么作者不直接 delete ptr; 通过上stackoverflow提…

leetcode 1004. 最大连续1的个数 III(滑动窗口)

给定一个由若干 0 和 1 组成的数组 A&#xff0c;我们最多可以将 K 个值从 0 变成 1 。 返回仅包含 1 的最长&#xff08;连续&#xff09;子数组的长度。 示例 1&#xff1a; 输入&#xff1a;A [1,1,1,0,0,0,1,1,1,1,0], K 2 输出&#xff1a;6 解释&#xff1a; [1,1,1…

我如何找到工作并找到理想的工作

By Julius Zerwick朱利叶斯泽威克(Julius Zerwick) This article is about how I went through my job hunt for a full time position as a software engineer in New York City and ended up with my dream job. I had spent two years building my skills and had aspirati…