未验证 提交 1c52d222 编写于 作者: O openharmony_ci 提交者: Gitee

!22989 【挑单】ArkTS does not support var, always use let instead.

Merge pull request !22989 from junyi233/cherry-pick-1692938471
...@@ -50,8 +50,8 @@ setDisposedStatus(appId: string, disposedWant: Want): Promise\<void> ...@@ -50,8 +50,8 @@ setDisposedStatus(appId: string, disposedWant: Want): Promise\<void>
**示例:** **示例:**
```ts ```ts
var appId = "com.example.myapplication_xxxxx"; let appId = "com.example.myapplication_xxxxx";
var want = {bundleName: 'com.example.myapplication'}; let want = {bundleName: 'com.example.myapplication'};
try { try {
appControl.setDisposedStatus(appId, want) appControl.setDisposedStatus(appId, want)
...@@ -96,8 +96,8 @@ setDisposedStatus(appId: string, disposedWant: Want, callback: AsyncCallback\<vo ...@@ -96,8 +96,8 @@ setDisposedStatus(appId: string, disposedWant: Want, callback: AsyncCallback\<vo
**示例:** **示例:**
```ts ```ts
var appId = "com.example.myapplication_xxxxx"; let appId = "com.example.myapplication_xxxxx";
var want = {bundleName: 'com.example.myapplication'}; let want = {bundleName: 'com.example.myapplication'};
try { try {
appControl.setDisposedStatus(appId, want, (error, data) => { appControl.setDisposedStatus(appId, want, (error, data) => {
...@@ -147,7 +147,7 @@ getDisposedStatus(appId: string): Promise\<Want>; ...@@ -147,7 +147,7 @@ getDisposedStatus(appId: string): Promise\<Want>;
**示例:** **示例:**
```ts ```ts
var appId = "com.example.myapplication_xxxxx"; let appId = "com.example.myapplication_xxxxx";
try { try {
appControl.getDisposedStatus(appId) appControl.getDisposedStatus(appId)
...@@ -191,7 +191,7 @@ getDisposedStatus(appId: string, callback: AsyncCallback\<Want>): void; ...@@ -191,7 +191,7 @@ getDisposedStatus(appId: string, callback: AsyncCallback\<Want>): void;
**示例:** **示例:**
```ts ```ts
var appId = "com.example.myapplication_xxxxx"; let appId = "com.example.myapplication_xxxxx";
try { try {
appControl.getDisposedStatus(appId, (error, data) => { appControl.getDisposedStatus(appId, (error, data) => {
...@@ -241,7 +241,7 @@ deleteDisposedStatus(appId: string): Promise\<void> ...@@ -241,7 +241,7 @@ deleteDisposedStatus(appId: string): Promise\<void>
**示例:** **示例:**
```ts ```ts
var appId = "com.example.myapplication_xxxxx"; let appId = "com.example.myapplication_xxxxx";
try { try {
appControl.deleteDisposedStatus(appId) appControl.deleteDisposedStatus(appId)
...@@ -285,7 +285,7 @@ deleteDisposedStatus(appId: string, callback: AsyncCallback\<void>) : void ...@@ -285,7 +285,7 @@ deleteDisposedStatus(appId: string, callback: AsyncCallback\<void>) : void
**示例:** **示例:**
```ts ```ts
var appId = "com.example.myapplication_xxxxx"; let appId = "com.example.myapplication_xxxxx";
try { try {
appControl.deleteDisposedStatus(appId, (error, data) => { appControl.deleteDisposedStatus(appId, (error, data) => {
if (error) { if (error) {
...@@ -308,8 +308,8 @@ appId是应用的唯一标识,由应用Bundle名称和签名信息决定,可 ...@@ -308,8 +308,8 @@ appId是应用的唯一标识,由应用Bundle名称和签名信息决定,可
```ts ```ts
import bundleManager from '@ohos.bundle.bundleManager'; import bundleManager from '@ohos.bundle.bundleManager';
var bundleName = 'com.example.myapplication'; let bundleName = 'com.example.myapplication';
var appId; let appId: string;
try { try {
bundleManager.getBundleInfo(bundleName, bundleManager.BundleFlag.GET_BUNDLE_INFO_WITH_SIGNATURE_INFO) bundleManager.getBundleInfo(bundleName, bundleManager.BundleFlag.GET_BUNDLE_INFO_WITH_SIGNATURE_INFO)
.then((data) => { .then((data) => {
......
...@@ -45,8 +45,8 @@ setOverlayEnabled(moduleName:string, isEnabled: boolean): Promise\<void>; ...@@ -45,8 +45,8 @@ setOverlayEnabled(moduleName:string, isEnabled: boolean): Promise\<void>;
**示例:** **示例:**
```ts ```ts
var moduleName = "feature"; let moduleName = "feature";
var isEnabled = false; let isEnabled = false;
try { try {
overlay.setOverlayEnabled(moduleName, isEnabled) overlay.setOverlayEnabled(moduleName, isEnabled)
...@@ -88,8 +88,8 @@ setOverlayEnabled(moduleName:string, isEnabled: boolean, callback: AsyncCallback ...@@ -88,8 +88,8 @@ setOverlayEnabled(moduleName:string, isEnabled: boolean, callback: AsyncCallback
**示例:** **示例:**
```ts ```ts
var moduleName = "feature"; let moduleName = "feature";
var isEnabled = false; let isEnabled = false;
try { try {
overlay.setOverlayEnabled(moduleName, isEnabled, (err, data) => { overlay.setOverlayEnabled(moduleName, isEnabled, (err, data) => {
...@@ -144,9 +144,9 @@ setOverlayEnabledByBundleName(bundleName:string, moduleName:string, isEnabled: b ...@@ -144,9 +144,9 @@ setOverlayEnabledByBundleName(bundleName:string, moduleName:string, isEnabled: b
**示例:** **示例:**
```ts ```ts
var bundleName = "com.example.myapplication_xxxxx"; let bundleName = "com.example.myapplication_xxxxx";
var moduleName = "feature"; let moduleName = "feature";
var isEnabled = false; let isEnabled = false;
try { try {
overlay.setOverlayEnabledByBundleName(bundleName, moduleName, isEnabled) overlay.setOverlayEnabledByBundleName(bundleName, moduleName, isEnabled)
...@@ -195,9 +195,9 @@ setOverlayEnabledByBundleName(bundleName:string, moduleName:string, isEnabled: b ...@@ -195,9 +195,9 @@ setOverlayEnabledByBundleName(bundleName:string, moduleName:string, isEnabled: b
**示例:** **示例:**
```ts ```ts
var bundleName = "com.example.myapplication_xxxxx"; let bundleName = "com.example.myapplication_xxxxx";
var moduleName = "feature"; let moduleName = "feature";
var isEnabled = false; let isEnabled = false;
try { try {
overlay.setOverlayEnabledByBundleName(bundleName, moduleName, isEnabled, (err, data) => { overlay.setOverlayEnabledByBundleName(bundleName, moduleName, isEnabled, (err, data) => {
...@@ -245,7 +245,7 @@ getOverlayModuleInfo(moduleName: string): Promise\<OverlayModuleInfo>; ...@@ -245,7 +245,7 @@ getOverlayModuleInfo(moduleName: string): Promise\<OverlayModuleInfo>;
**示例:** **示例:**
```ts ```ts
var moduleName = "feature"; let moduleName = "feature";
(async() => { (async() => {
try { try {
...@@ -285,7 +285,7 @@ getOverlayModuleInfo(moduleName: string, callback: AsyncCallback\<OverlayModuleI ...@@ -285,7 +285,7 @@ getOverlayModuleInfo(moduleName: string, callback: AsyncCallback\<OverlayModuleI
**示例:** **示例:**
```ts ```ts
var moduleName = "feature"; let moduleName = "feature";
try { try {
overlay.getOverlayModuleInfo(moduleName, (err, data) => { overlay.getOverlayModuleInfo(moduleName, (err, data) => {
if (err) { if (err) {
...@@ -331,7 +331,7 @@ getTargetOverlayModuleInfos(targetModuleName: string): Promise\<Array\<OverlayMo ...@@ -331,7 +331,7 @@ getTargetOverlayModuleInfos(targetModuleName: string): Promise\<Array\<OverlayMo
**示例:** **示例:**
```ts ```ts
var targetModuleName = "feature"; let targetModuleName = "feature";
(async() => { (async() => {
try { try {
...@@ -370,7 +370,7 @@ getTargetOverlayModuleInfos(targetModuleName: string, callback: AsyncCallback\<A ...@@ -370,7 +370,7 @@ getTargetOverlayModuleInfos(targetModuleName: string, callback: AsyncCallback\<A
**示例:** **示例:**
```ts ```ts
var targetModuleName = "feature"; let targetModuleName = "feature";
try { try {
overlay.getTargetOverlayModuleInfos(targetModuleName, (err, data) => { overlay.getTargetOverlayModuleInfos(targetModuleName, (err, data) => {
if (err) { if (err) {
...@@ -423,8 +423,8 @@ getOverlayModuleInfoByBundleName(bundleName: string, moduleName?: string): Promi ...@@ -423,8 +423,8 @@ getOverlayModuleInfoByBundleName(bundleName: string, moduleName?: string): Promi
**示例:** **示例:**
```ts ```ts
var bundleName = "com.example.myapplication_xxxxx"; let bundleName = "com.example.myapplication_xxxxx";
var moduleName = "feature"; let moduleName = "feature";
(async() => { (async() => {
try { try {
...@@ -470,8 +470,8 @@ getOverlayModuleInfoByBundleName(bundleName: string, moduleName: string, callbac ...@@ -470,8 +470,8 @@ getOverlayModuleInfoByBundleName(bundleName: string, moduleName: string, callbac
**示例:** **示例:**
```ts ```ts
var bundleName = "com.example.myapplication_xxxxx"; let bundleName = "com.example.myapplication_xxxxx";
var moduleName = "feature"; let moduleName = "feature";
try { try {
overlay.getOverlayModuleInfoByBundleName(bundleName, moduleName, (err, data) => { overlay.getOverlayModuleInfoByBundleName(bundleName, moduleName, (err, data) => {
...@@ -517,7 +517,7 @@ getOverlayModuleInfoByBundleName(bundleName: string, callback: AsyncCallback\<Ar ...@@ -517,7 +517,7 @@ getOverlayModuleInfoByBundleName(bundleName: string, callback: AsyncCallback\<Ar
**示例:** **示例:**
```ts ```ts
var bundleName = "com.example.myapplication_xxxxx"; let bundleName = "com.example.myapplication_xxxxx";
try { try {
overlay.getOverlayModuleInfoByBundleName(bundleName, (err, data) => { overlay.getOverlayModuleInfoByBundleName(bundleName, (err, data) => {
...@@ -571,8 +571,8 @@ getTargetOverlayModuleInfosByBundleName(targetBundleName: string, moduleName?: s ...@@ -571,8 +571,8 @@ getTargetOverlayModuleInfosByBundleName(targetBundleName: string, moduleName?: s
**示例:** **示例:**
```ts ```ts
var targetBundleName = "com.example.myapplication_xxxxx"; let targetBundleName = "com.example.myapplication_xxxxx";
var moduleName = "feature"; let moduleName = "feature";
(async() => { (async() => {
try { try {
...@@ -618,8 +618,8 @@ getTargetOverlayModuleInfosByBundleName(targetBundleName: string, moduleName: st ...@@ -618,8 +618,8 @@ getTargetOverlayModuleInfosByBundleName(targetBundleName: string, moduleName: st
**示例:** **示例:**
```ts ```ts
var targetBundleName = "com.example.myapplication_xxxxx"; let targetBundleName = "com.example.myapplication_xxxxx";
var moduleName = "feature"; let moduleName = "feature";
try { try {
overlay.getTargetOverlayModuleInfosByBundleName(targetBundleName, moduleName, (err, data) => { overlay.getTargetOverlayModuleInfosByBundleName(targetBundleName, moduleName, (err, data) => {
...@@ -665,7 +665,7 @@ getTargetOverlayModuleInfosByBundleName(targetBundleName: string, callback: Asyn ...@@ -665,7 +665,7 @@ getTargetOverlayModuleInfosByBundleName(targetBundleName: string, callback: Asyn
**示例:** **示例:**
```ts ```ts
var targetBundleName = "com.example.myapplication_xxxxx"; let targetBundleName = "com.example.myapplication_xxxxx";
try { try {
overlay.getTargetOverlayModuleInfosByBundleName(targetBundleName, (err, data) => { overlay.getTargetOverlayModuleInfosByBundleName(targetBundleName, (err, data) => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册