作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 this page 中的 API .
定义如下:
vline.Promise.<vline.Collection> getMessages([Number opt_limit])
我想使用这个 API 的返回值,但是我不明白 <>
是什么意思方法。我研究过 JavaScript 语言,但找不到任何线索。
我的脚本是:
vlinesession.getPerson(userId).done(function(person) {
person.postMessage(msg); //it works.
var log = person.getMessages(20); //how can I parse 'log'?
}
谁能给我一些关于如何使用此 API 的提示或示例?
最佳答案
这在 vline.Promise
documentation page 上有解释:
In the documentation, you will frequently see functions with a return value of the form
vline.Promise.<foo.Bar>
. This is a short-hand way of saying that the function returns aPromise
and the result provided to success callbacks on thatPromise
will be of typefoo.Bar
. We may refer to this less formally as a "promise of a foo.Bar".
关于JavaScript 返回值 : What does <> mean?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17925676/
我是一名优秀的程序员,十分优秀!