harmony 鸿蒙Stopping a PageAbility

  • 2023-02-03
  • 浏览 (423)

Stopping a PageAbility

The terminateSelf() method in the featureAbility class is used to stop a PageAbility.

Table 1 featureAbility APIs

API Description
terminateSelf() Terminates this ability.
terminateSelfWithResult(parameter: AbilityResult) Terminates this ability and returns the execution result.

The following code snippet shows how to stop an ability.

import featureAbility from '@ohos.ability.featureAbility'

(async () => {
  try {
    console.info('Begin to terminateSelf')
    await featureAbility.terminateSelf()
    console.info('terminateSelf succeed')
  } 
  catch (error) {
    console.error('terminateSelf failed with ' + error)
  }
})()

你可能感兴趣的鸿蒙文章

harmony 鸿蒙Application Models

harmony 鸿蒙Using Explicit Want to Start an Application Component

harmony 鸿蒙Using Implicit Want to Open a Website

harmony 鸿蒙AbilityStage Component Container

harmony 鸿蒙Accessing a DataAbility

harmony 鸿蒙Accessing a DataShareExtensionAbility from the FA Model

harmony 鸿蒙AccessibilityExtensionAbility

harmony 鸿蒙Common action and entities Values

harmony 鸿蒙API Switching Overview

harmony 鸿蒙Switching of app and deviceConfig

0  赞