- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我在看this AngularJS 教程描述了如何使用 Angular 资源连接到 Twitter。 ( Video tutorial ) 这是在示例 Controller 中设置的资源:
$scope.twitter = $resource('http://twitter.com/:action',
{action: 'search.json', q: 'angularjs', callback: 'JSON_CALLBACK'},
{get: {method: 'JSONP'}});
本教程显示有几种方法可以使用 get
调用从资源中取回数据。第一种方法是将回调传递给 get 函数。 ajax 请求返回后会调用回调函数:
$scope.twitter.get(function(result) {
console.log('This was the result:', result);
});
我理解这个方法。这对我来说很有意义。资源表示 Web 上可以获取数据的位置,get
只是对 url 进行 ajax 调用,获取 json,并使用 json 调用回调函数。 result
参数是那个 json。
这对我来说很有意义,因为很明显这是一个异步调用。也就是说,在幕后,ajax 调用会触发,调用后的代码不会被阻塞,它会继续执行。然后在稍后的某个不确定点,当 xhr 成功时,回调函数被调用。
然后教程展示了一个不同的方法,看起来简单很多,但我不明白它是如何工作的:
$scope.twitterResult = $scope.twitter.get();
我假设 get
下的 xhr 必须是异步的,但在这一行中,我们将 get
调用的返回值分配给一个变量,就好像它返回了同步。
是不是我没看懂?这怎么可能?我认为它真的很好用,我只是不明白。
我知道 get
可以返回 something 而它下面的 xhr 关闭并异步处理,但是如果你自己按照代码示例,你会看到 $scope.twitterResult
在执行任何后续行之前获取实际的推特内容。例如,如果您在该行之后立即编写 console.log($scope.twitterResult)
,您将看到来自 twitter 的结果记录在控制台中,而不是稍后替换的临时值。
更重要的是,因为这是可能的,我该如何编写一个利用相同功能的 Angular 服务?除了 ajax 请求之外,还有其他类型的数据存储需要可以在 JavaScript 中使用的异步调用,我希望能够以这种方式同步编写代码。例如,索引数据库。如果我能全神贯注于 Angular 的内置资源是如何做到这一点的,我会试一试。
最佳答案
$resource 不是同步的,尽管这个语法可能表明它是:
$scope.twitterResult = $scope.twitter.get();
这里发生的事情是,在调用 twitter.get()
之后,对 AngularJS 的调用将立即返回,结果是一个空数组。然后,当异步调用完成并且真正的数据从服务器到达时,数组将更新为数据。 AngularJS 将简单地保留对返回数组的引用,并在数据可用时填充它。
这是 $resource 实现的片段,其中发生了“魔法”:https://github.com/angular/angular.js/blob/master/src/ngResource/resource.js#L372
这在 $resource documentation 中有描述还有:
It is important to realize that invoking a $resource object method immediately returns an empty reference (object or array depending on
isArray
). Once the data is returned from the server the existing reference is populated with the actual data. This is a useful trick since usually the resource is assigned to a model which is then rendered by the view. Having an empty object results in no rendering, once the data arrives from the server then the object is populated with the data and the view automatically re-renders itself showing the new data. This means that in most case one never has to write a callback function for the action methods.
关于javascript - $resource `get` 函数如何在 AngularJS 中同步工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11966252/
我正在寻找外行人对计算机硬件和组织的介绍。以下是我想讨论的一些主题。 Brief intro to electronics. Gates and state machines, intro to re
有没有人在 Visual Basic 2010 中看到过这个错误,如果有的话......关于如何解决它的任何想法? 错误是 module 'Resources' and module 'Resourc
这个问题在这里已经有了答案: Why ?attr/colorAccent dose not work below lollipop version? (2 个答案) 关闭 5 年前。 我收到以下错误
我正在尝试通过 ring 学习 clojure 网络开发和 compojure我有点不清楚 compojure.route/resources 和 ring.middleware.resource/w
是否必须放置内部 try-with-resources 或其中一个 try-with-resources 中的所有内容都会自动关闭? try (BasicDataSource ds = Bas
我有一本包含多个食谱的 Chef 食谱,用于安装服务。 Chef-client 的工作方式是每 15 分钟(或其他固定时间间隔)重新收敛一次。现在我的食谱的第一步是停止服务,所以服务将每 15 分钟停
我有资源组“MyResources”,其中包含 4 个资源: AppService - 我的服务器, AppServicePlan - MyServerWestEuFarm, ApplicationI
我有资源组“MyResources”,其中包含 4 个资源: AppService - 我的服务器, AppServicePlan - MyServerWestEuFarm, ApplicationI
我有一个返回 ResponseEntity 的休息终点. 需要检查如何在 Swagger 规范中创建这种类型的响应。这里包中的资源是 org.springframework.core.io.Resou
In my azure portal I have 6 separate applications, I have to list all of the employed resources u
In my azure portal I have 6 separate applications, I have to list all of the employed resources u
我有一个问题,设计师不会显示表单。它失败,错误 Designer 给出警告,如下所示: 我该如何解决这个问题? 最佳答案 您似乎缺少在应用程序中加载此表单所需的项目 资源 . 您可以访问 资源右键单击
我是 angularJS 世界的新手,我可能误解了一些东西。 我的应用程序使用 Controller 、指令和服务,所有这些都运行完美,直到我使用带有 $resource 的服务,然后出现“冲突”或其
我在 Unity3D 工作。 我使用 Resources.LoadAll(path);加载文件夹和子文件夹中的所有项目。执行此操作后,我想获取对象的子文件夹名称或完整路径。这可能吗? 并且不建议使用
我需要监控每个客户端环境(一个订阅、多个资源组)的 Azure 支出。在我的研究中,我发现了 2 个可以使用的 API: 资源费率卡( https://msdn.microsoft.com/fr-fr
在 RDF 1.1 XML 语法文档中 rdf:resource 在定义 Empty Property Elements 时用作缩写形式: When a predicate arc in an RDF
这是一种常见的情况,我们需要在用户更新/创建一些数据后向用户显示错误/成功消息,我们如何在 AngularJS 中实现它? 我想添加回调但找不到解决方案。使用 $http.post().success
我正在使用 android studio 作为 IDE 开发一个 android 应用程序。 我的问题是: 如何在构建APK过程中排除某个目录下的某些文件? 在我的例子中,我想从构建中排除一些图像,因
在编译我的 Visual Studio C# 项目时,出现以下错误: 在“Resources”参数中多次指定项目“obj\Debug\SampleProject.Forms.MDIMain.resou
使用 CoffeeScript、Angular 和 $resource,我创建了以下工厂: angular.module('myapp', ['ngResource']).factory 'MyObj
我是一名优秀的程序员,十分优秀!