Skip to main content

ion-action-sheet

scoped

操作表是一个显示一组选项的对话框。它显示在应用内容的顶部,并且必须由用户手动关闭,然后才能恢复与应用的交互。破坏性选项在 ios 模式中变得显而易见。有多种方法可以关闭操作表,包括点击背景或按桌面上的转义键。

¥An Action Sheet is a dialog that displays a set of options. It appears on top of the app's content, and must be manually dismissed by the user before they can resume interaction with the app. Destructive options are made obvious in ios mode. There are multiple ways to dismiss the action sheet, including tapping the backdrop or hitting the escape key on desktop.

¥Inline Action Sheets (Recommended)

可以通过直接在模板中编写组件来使用 ion-action-sheet。这减少了为了渲染操作表而需要连接的处理程序的数量。

¥ion-action-sheet can be used by writing the component directly in your template. This reduces the number of handlers you need to wire up in order to present the Action Sheet.

使用 isOpen

¥Using isOpen

ion-action-sheet 上的 isOpen 属性允许开发者从其应用状态控制操作表的渲染状态。这意味着当 isOpen 设置为 true 时,将显示操作表,而当 isOpen 设置为 false 时,将关闭操作表。

¥The isOpen property on ion-action-sheet allows developers to control the presentation state of the Action Sheet from their application state. This means when isOpen is set to true the Action Sheet will be presented, and when isOpen is set to false the Action Sheet will be dismissed.

isOpen 使用单向数据绑定,这意味着当操作表关闭时,它不会自动设置为 false。开发者应该监听 ionActionSheetDidDismissdidDismiss 事件并将 isOpen 设置为 false。这样做的原因是它阻止了 ion-action-sheet 的内部与应用的状态紧密耦合。通过单向数据绑定,操作表只需要关心反应变量提供的布尔值。对于双向数据绑定,操作表需要关注布尔值以及反应变量本身的存在。这可能会导致不确定的行为并使应用更难以调试。

¥isOpen uses a one-way data binding, meaning it will not automatically be set to false when the Action Sheet is dismissed. Developers should listen for the ionActionSheetDidDismiss or didDismiss event and set isOpen to false. The reason for this is it prevents the internals of ion-action-sheet from being tightly coupled with the state of the application. With a one way data binding, the Action Sheet only needs to concern itself with the boolean value that the reactive variable provides. With a two way data binding, the Action Sheet needs to concern itself with both the boolean value as well as the existence of the reactive variable itself. This can lead to non-deterministic behaviors and make applications harder to debug.

控制器操作表

¥Controller Action Sheets

actionSheetController 可用于需要对操作表何时渲染和消失进行更多控制的情况。

¥The actionSheetController can be used in situations where more control is needed over when the Action Sheet is presented and dismissed.

按钮

¥Buttons

按钮的 role 属性可以是 destructivecancel。没有角色属性的按钮将具有平台的默认外观。具有 cancel 角色的按钮将始终作为底部按钮加载,无论它们位于数组中的哪个位置。所有其他按钮将按照添加到 buttons 数组的顺序显示。注意:我们建议 destructive 按钮始终是数组中的第一个按钮,使其成为顶部按钮。此外,如果通过点击背景关闭操作表,那么它将通过具有取消角色的按钮触发处理程序。

¥A button's role property can either be destructive or cancel. Buttons without a role property will have the default look for the platform. Buttons with the cancel role will always load as the bottom button, no matter where they are in the array. All other buttons will be displayed in the order they have been added to the buttons array. Note: We recommend that destructive buttons are always the first button in the array, making them the top button. Additionally, if the action sheet is dismissed by tapping the backdrop, then it will fire the handler from the button with the cancel role.

按钮还可以通过 ActionSheetButton 上的 data 属性传递数据。这将填充 onDidDismiss 方法的返回值中的 data 字段。

¥A button can also be passed data via the data property on ActionSheetButton. This will populate the data field in the return value of the onDidDismiss method.

收集退出时的角色信息

¥Collecting Role Information on Dismiss

didDismiss 事件被触发时,事件详细信息的 datarole 字段可用于收集有关操作表如何被解除的信息。

¥When the didDismiss event is fired, the data and role fields of the event detail can be used to gather information about how the Action Sheet was dismissed.

Console
Console messages will appear here when logged from the example above.

主题化

¥Theming

Action Sheet 使用范围封装,这意味着它将通过在运行时为每个样式附加一个附加类来自动确定其 CSS 范围。覆盖 CSS 中的作用域选择器需要 更高的特异性 选择器。

¥Action Sheet uses scoped encapsulation, which means it will automatically scope its CSS by appending each of the styles with an additional class at runtime. Overriding scoped selectors in CSS requires a higher specificity selector.

样式

¥Styling

我们建议在 create 方法中将自定义类传递给 cssClass,并使用它向宿主元素和内部元素添加自定义样式。此属性还可以接受用空格分隔的多个类。

¥We recommend passing a custom class to cssClass in the create method and using that to add custom styles to the host and inner elements. This property can also accept multiple classes separated by spaces.

/* DOES NOT WORK - not specific enough */
.action-sheet-group {
background: #e5e5e5;
}

/* Works - pass "my-custom-class" in cssClass to increase specificity */
.my-custom-class .action-sheet-group {
background: #e5e5e5;
}

CSS 自定义属性

¥CSS Custom Properties

任何已定义的 CSS 自定义属性 均可用于设置操作表的样式,而无需针对单个元素。

¥Any of the defined CSS Custom Properties can be used to style the Action Sheet without needing to target individual elements.

无障碍

¥Accessibility

屏幕阅读器

¥Screen Readers

操作表设置 aria 属性,以便对屏幕阅读器来说是 accessible,但如果这些属性描述性不够,或者与操作表在应用中的使用方式不一致,则可以覆盖这些属性。

¥Action Sheets set aria properties in order to be accessible to screen readers, but these properties can be overridden if they aren't descriptive enough or don't align with how the action sheet is being used in an app.

角色

¥Role

行动表的 roledialog。为了与 ARIA 规范保持一致,必须设置 aria-labelaria-labelledby 属性。

¥Action Sheets are given a role of dialog. In order to align with the ARIA spec, either the aria-label or aria-labelledby attribute must be set.

动作表说明

¥Action Sheet Description

强烈建议每个操作表都定义 header 属性,因为 Ionic 会自动设置 aria-labelledby 以指向标题元素。但是,如果你选择不包含 header,另一种方法是使用 htmlAttributes 属性来提供描述性 aria-label 或设置自定义 aria-labelledby 值。

¥It is strongly recommended that every Action Sheet have the header property defined, as Ionic will automatically set aria-labelledby to point to the header element. However, if you choose not to include a header, an alternative is to use the htmlAttributes property to provide a descriptive aria-label or set a custom aria-labelledby value.

const actionSheet = await this.actionSheetController.create({
htmlAttributes: {
'aria-label': 'action sheet dialog',
},
});

操作表按钮说明

¥Action Sheet Buttons Description

包含文本的按钮将由屏幕阅读器读取。如果按钮仅包含图标,或者需要除现有文本之外的描述,则应通过将 aria-label 传递到按钮上的 htmlAttributes 属性来为按钮分配标签。

¥Buttons containing text will be read by a screen reader. If a button contains only an icon, or a description other than the existing text is desired, a label should be assigned to the button by passing aria-label to the htmlAttributes property on the button.

const actionSheet = await this.actionSheetController.create({
header: 'Header',
buttons: [
{
icon: 'close',
htmlAttributes: {
'aria-label': 'close',
},
},
],
});

接口

¥Interfaces

ActionSheetButton

interface ActionSheetButton<T = any> {
text?: string;
role?: 'cancel' | 'destructive' | 'selected' | string;
icon?: string;
cssClass?: string | string[];
id?: string;
htmlAttributes?: { [key: string]: any };
handler?: () => boolean | void | Promise<boolean | void>;
data?: T;
}

ActionSheetOptions

interface ActionSheetOptions {
header?: string;
subHeader?: string;
cssClass?: string | string[];
buttons: (ActionSheetButton | string)[];
backdropDismiss?: boolean;
translucent?: boolean;
animated?: boolean;
mode?: Mode;
keyboardClose?: boolean;
id?: string;
htmlAttributes?: { [key: string]: any };

enterAnimation?: AnimationBuilder;
leaveAnimation?: AnimationBuilder;
}

属性

¥Properties

animated

DescriptionIf true, the action sheet will animate.
Attributeanimated
Typeboolean
Defaulttrue

backdropDismiss

DescriptionIf true, the action sheet will be dismissed when the backdrop is clicked.
Attributebackdrop-dismiss
Typeboolean
Defaulttrue

buttons

DescriptionAn array of buttons for the action sheet.
Attributeundefined
Type(string | ActionSheetButton<any>)[]
Default[]

cssClass

DescriptionAdditional classes to apply for custom CSS. If multiple classes are provided they should be separated by spaces.
Attributecss-class
Typestring | string[] | undefined
Defaultundefined

enterAnimation

DescriptionAnimation to use when the action sheet is presented.
Attributeundefined
Type((baseEl: any, opts?: any) => Animation) | undefined
Defaultundefined
DescriptionTitle for the action sheet.
Attributeheader
Typestring | undefined
Defaultundefined

htmlAttributes

DescriptionAdditional attributes to pass to the action sheet.
Attributeundefined
Typeundefined | { [key: string]: any; }
Defaultundefined

isOpen

DescriptionIf true, the action sheet will open. If false, the action sheet will close. Use this if you need finer grained control over presentation, otherwise just use the actionSheetController or the trigger property. Note: isOpen will not automatically be set back to false when the action sheet dismisses. You will need to do that in your code.
Attributeis-open
Typeboolean
Defaultfalse

keyboardClose

DescriptionIf true, the keyboard will be automatically dismissed when the overlay is presented.
Attributekeyboard-close
Typeboolean
Defaulttrue

leaveAnimation

DescriptionAnimation to use when the action sheet is dismissed.
Attributeundefined
Type((baseEl: any, opts?: any) => Animation) | undefined
Defaultundefined

mode

DescriptionThe mode determines which platform styles to use.
Attributemode
Type"ios" | "md"
Defaultundefined

subHeader

DescriptionSubtitle for the action sheet.
Attributesub-header
Typestring | undefined
Defaultundefined

translucent

DescriptionIf true, the action sheet will be translucent. Only applies when the mode is "ios" and the device supports backdrop-filter.
Attributetranslucent
Typeboolean
Defaultfalse

trigger

DescriptionAn ID corresponding to the trigger element that causes the action sheet to open when clicked.
Attributetrigger
Typestring | undefined
Defaultundefined

事件

¥Events

NameDescriptionBubbles
didDismissEmitted after the action sheet has dismissed. Shorthand for ionActionSheetDidDismiss.true
didPresentEmitted after the action sheet has presented. Shorthand for ionActionSheetWillDismiss.true
ionActionSheetDidDismissEmitted after the action sheet has dismissed.true
ionActionSheetDidPresentEmitted after the action sheet has presented.true
ionActionSheetWillDismissEmitted before the action sheet has dismissed.true
ionActionSheetWillPresentEmitted before the action sheet has presented.true
willDismissEmitted before the action sheet has dismissed. Shorthand for ionActionSheetWillDismiss.true
willPresentEmitted before the action sheet has presented. Shorthand for ionActionSheetWillPresent.true

方法

¥Methods

dismiss

DescriptionDismiss the action sheet overlay after it has been presented.
Signaturedismiss(data?: any, role?: string) => Promise<boolean>

onDidDismiss

DescriptionReturns a promise that resolves when the action sheet did dismiss.
SignatureonDidDismiss<T = any>() => Promise<OverlayEventDetail<T>>

onWillDismiss

DescriptionReturns a promise that resolves when the action sheet will dismiss.
SignatureonWillDismiss<T = any>() => Promise<OverlayEventDetail<T>>

present

DescriptionPresent the action sheet overlay after it has been created.
Signaturepresent() => Promise<void>

CSS 阴影部分

¥CSS Shadow Parts

No CSS shadow parts available for this component.

CSS 自定义属性

¥CSS Custom Properties

NameDescription
--backdrop-opacityOpacity of the backdrop
--backgroundBackground of the action sheet group
--button-backgroundBackground of the action sheet button
--button-background-activatedBackground of the action sheet button when pressed. Note: setting this will interfere with the Material Design ripple.
--button-background-activated-opacityOpacity of the action sheet button background when pressed
--button-background-focusedBackground of the action sheet button when tabbed to
--button-background-focused-opacityOpacity of the action sheet button background when tabbed to
--button-background-hoverBackground of the action sheet button on hover
--button-background-hover-opacityOpacity of the action sheet button background on hover
--button-background-selectedBackground of the selected action sheet button
--button-background-selected-opacityOpacity of the selected action sheet button background
--button-colorColor of the action sheet button
--button-color-activatedColor of the action sheet button when pressed
--button-color-disabledColor of the selected action sheet button when disabled
--button-color-focusedColor of the action sheet button when tabbed to
--button-color-hoverColor of the action sheet button on hover
--button-color-selectedColor of the selected action sheet button
--colorColor of the action sheet text
--heightheight of the action sheet
--max-heightMaximum height of the action sheet
--max-widthMaximum width of the action sheet
--min-heightMinimum height of the action sheet
--min-widthMinimum width of the action sheet
--widthWidth of the action sheet

插槽

¥Slots

No slots available for this component.