服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.attempt(func, args)

尝试调用func,返回结果或捕获的错误对象。func调用时会提供任何其他参数。

版本

3.0.0

参数
  1. func (功能):尝试的功能。
  2. [args] (... *):用来调用的参数func
返回

(*):返回func结果或错误对象。

// Avoid throwing errors for invalid selectors.

var elements = _.attempt(function(selector) {
  return document.querySelectorAll(selector);
}, '>_>');
 
if (_.isError(elements)) {
  elements = [];
}