# Notify 消息提示
### 介绍
在页面顶部展示消息提示,支持函数调用和组件调用两种方式。
### 引入
在`app.json`或`index.json`中引入组件,详细介绍见[快速上手](#/quickstart#yin-ru-zu-jian)。
```json
"usingComponents": {
"van-notify": "@vant/weapp/notify/index"
}
```
## 代码演示
### 基础用法
```js
import Notify from 'path/to/@vant/weapp/dist/notify/notify';
Notify('通知内容');
```
```html
```
### 通知类型
支持`primary`、`success`、`warning`、`danger`四种通知类型,默认为`danger`。
```js
// 主要通知
Notify({ type: 'primary', message: '通知内容' });
// 成功通知
Notify({ type: 'success', message: '通知内容' });
// 危险通知
Notify({ type: 'danger', message: '通知内容' });
// 警告通知
Notify({ type: 'warning', message: '通知内容' });
```
### 自定义通知
自定义消息通知的颜色和展示时长。
```js
Notify({
message: '自定义颜色',
color: '#ad0000',
background: '#ffe1e1',
});
Notify({
message: '自定义时长',
duration: 1000,
});
```
### 自定义选择器
```js
Notify({
message: '自定义节点选择器',
duration: 1000,
selector: '#custom-selector',
});
```
```html
```
## API
### 方法
| 方法名 | 说明 | 参数 | 返回值 |
| ------------ | -------- | ------------------- | ----------- |
| Notify | 展示提示 | `options \| message` | notify 实例 |
| Notify.clear | 关闭提示 | `options` | `void` |
### Options
| 参数 | 说明 | 类型 | 默认值 |
| ---------------- | ------------------------------------------------------ | ---------- | ------------ |
| type `v1.0.0` | 类型,可选值为 `primary` `success` `warning` | _string_ | `danger` |
| message `v1.0.0` | 展示文案,支持通过`\n`换行 | _string_ | `''` |
| duration | 展示时长(ms),值为 0 时,notify 不会消失 | _number_ | `3000` |
| selector | 自定义节点选择器 | _string_ | `van-notify` |
| color | 字体颜色 | _string_ | `#fff` |
| top | 顶部距离 | _number_ | `0` |
| background | 背景颜色 | _string_ | - |
| context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | _object_ | 当前页面 |
| onClick | 点击时的回调函数 | _Function_ | - |
| onOpened | 完全展示后的回调函数 | _Function_ | - |
| onClose | 关闭时的回调函数 | _Function_ | - |
| safeAreaInsetTop | 是否留出顶部安全距离(状态栏高度) | _boolean_ | `false` |