bookmarks.getRecent()
method retrieves a specified number of the most recently added bookmarks as an array of
BookmarkTreeNode
对象。
This is an asynchronous function that returns a
Promise
.
var gettingRecent = browser.bookmarks.getRecent(
numberOfItems
// integer
)
numberOfItems
A number representing the maximum number of items to return. The returned list will contain up to this many of the most recently added items. The minimum allowed value here is 1. If you pass 0 or less, the function will throw an error.
A
Promise
that will be fulfilled with an array of
BookmarkTreeNode
对象。
This example logs the URL for the most recently added bookmark:
function onFulfilled(bookmarks) {
for (bookmark of bookmarks) {
console.log(bookmark.url);
}
}
function onRejected(error) {
console.log(`An error: ${error}`);
}
var gettingRecent = browser.bookmarks.getRecent(1);
gettingRecent.then(onFulfilled, onRejected);
BCD tables only load in the browser
注意:
This API is based on Chromium's
chrome.bookmarks
API. This documentation is derived from
bookmarks.json
in the Chromium code.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.
最后修改: , 由 MDN 贡献者