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

摘要

selectNetwork method is used to manually select a network, overriding the radio's current selection.

注意: If the network is actually changed by this request, the voicechange and datachange events are fired.

句法

var request = navigator.mozMobileConnection.selectNetworks(network);
					

Parmeters

network
A MozMobileNetworkInfo object representing the nework to select.

返回

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

If the request fails, the request's error is one of:

  • RadioNotAvailable
  • RequestNotSupported
  • IllegalSIMorME
  • GenericFailure .

范例

var connection = navigator.mozMobileConnection;
var availableNetwork = connection.getNetworks();
availableNetwork.onsuccess = function () {
  var network = this.result[0];
  var switchNetwork = connection.selectNetwork(network);
  switchNetwork.onsuccess = function () {
    console.log('Successful switch to: ' + network.longName);
  }
  switchNetwork.onerror = function () {
    console.log('Unable to switch to: ' + network.longName);
  }
}
availableNetwork.onerror = function () {
  console.log('No network available: ' + this.error.name);
}
					

规范

Not part of any specification.

另请参阅

元数据

  • 最后修改: