且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

你可以使用AngularJS与Parse.com吗?

更新时间:2023-11-09 22:29:16

我没有在Parse工作, long有一个REST API可用AngularJS可以很好地与Parse.com集成。这些链接证实了这一事实

I have not worked on Parse, but I believe as long there is a REST API available AngularJS can very well integrate with Parse.com. These links substantiate that fact

https://parse.com/questions/does-any-know-of-any-angularjs-sites-that-分别是开放原始码

http://brandid.github.io/parse-angular-demo/#/

说,AngularJS是一个非常有能力的框架,具有陡峭的学习曲线。简单的东西很简单,但是你需要把一个头朝下,开始学习不那么简单的东西,如指令一旦开始构建任何体面的应用程序。你投资学习AngularJS的越多,它变得越有收获。

Said that, AngularJS is a very capable framework with a steep learning curve. The simple stuff is simple but one needs to put ones head down and start learning the not so simple stuff like directives once one starts building any decent size application. The more you invest in learning AngularJS the more rewarding it becomes.

它在视图和代码方面有一个非常干净的分离。代码进一步组织成模块,工厂,服务,控制器,指令,过滤器等。

It has a very clean separation in terms of view and code. The code is further organized into modules, factories, services, controllers, directive, filters etc.

但仍然没有什么阻止你创建一个混乱的实现:)什么我已经意识到,即使你在AngularJS中创建混乱,效果是本地化的,而不是影响整个应用程序,由于Angular的模块化性质。

But still nothing stops you from creating a mess with the implementation :) What I have realized over the time is even if you create mess within AngularJS the effects are localized rather than affecting the complete application, due to the modular nature of Angular.

我建议您尝试使用AngularJS创建或查看一些示例(例如 TodoMVC

I suggest you try creating or looking at some samples with AngularJS (such as TodoMVC)

This is how i felt learning and implementing AngularJS solutions