This API is available on Firefox OS for internal applications 仅。

摘要

setCallForwardingOption method is used to configure call forward options.

句法

var request = navigator.mozMobileConnection.setCallForwardingOption(options);
					

参数

选项
An object containing the call forward rule to set. This object expects the same properties as those defined in the MozMobileCFInfo interface except for the active property which has no meaning when setting such a call forward rule.

返回

A DOMRequest object to handle the success or error of the method call.

If the request fails, the request's error will be either RadioNotAvailable , RequestNotSupported , IllegalSIMorME ,或 GenericFailure .

范例

var options = {
  action      : MozMobileCFInfo.CALL_FORWARD_ACTION_ENABLE,
  reason      : MozMobileCFInfo.CALL_FORWARD_REASON_UNCONDITIONAL,
  serviceClass: MozMobileConnectionInfo.ICC_SERVICE_CLASS_VOICE,
  number      : alternatePhoneNumber,
  timeSeconds : 5
};
var setOption = navigator.mozMobileConnection.setCallForwardingOption(options);
setOption.onsuccess = function () {
  console.log('Options successfully set');
}
setOption.onerror = function () {
  console.log('Unable to set options: ' + this.error.name);
}
					

规范

Not part of any specification.

另请参阅

元数据

  • 最后修改: