install - Web APIs 编辑
Summary
Installs one or more XPI files on the local machine.
Method of
InstallTrigger object
Syntax
int install(array XPIlist [, function callBackFunc ] )
Parameters
The install
method has the following parameters:
- XPIlist
- An array of files to be installed (see example below).
callBackFunc
- An optional callback function invoked when the installation is complete (see example below).
Firefox 3 note
In Firefox 3 the callback is no longer invoked unless the website performing the installation is whitelisted.
Returns
install
returns True if the function succeeded and False if it did not, but these values are not always reliable as a determinant of the success of the operation. To surface detail about the status of the installation, use the optional callback function and its status parameter, as in the example below.
Description
In the example below, a special JavaScript object constructor is used to create an object that can be passed to the install()
method. The { }
constructor takes a comma-delimited set of label/value pairs. For installations, these pairs are the XPInstall confirm dialog display name and the path of the XPI, respectively.
In the example below, a single installation object is created, but you can use this approach to create multiple installations to pass to a single install
.
As with the older startSoftwareUpdate method, XPIs installed with this method must have their own install.js files in which the full installation is defined. In contrast to startSoftwareUpdate, install
allows you to do multiple installs with the same trigger and provides a unified user experience for the multiple installs.
Example
function xpinstallCallback(url, status) { if (status == 0) msg = "XPInstall Test: PASSED\n"; else msg = "XPInstall Test: FAILED\n"; dump(msg); alert(msg); } xpi={'XPInstall Pre-Checkin Test':'pre_checkin.xpi'}; InstallTrigger.install(xpi,xpinstallCallback);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论