gpt4 book ai didi

javascript - 基于 promise 的对话 vue js?

转载 作者:搜寻专家 更新时间:2023-10-30 22:36:59 26 4
gpt4 key购买 nike

我已经创建了一个插件,但我不知道如何创建一个基于 promise 的插件。你能告诉我我需要在现有代码中添加什么吗?

我用 vuetify js 做 Material 样式

NotifyDlg.vue:这包含用于警告或确认对话的对话代码。根据消息类型,我将显示/隐藏按钮

<template>
<v-dialog max-width="500px"
v-model='dialogue'>
<v-card>
<v-card-title primary-title>
<v-icon :color="messageType">{‌{messageType}}</v-icon>
<title>{‌{title}}</title>
</v-card-title>
<v-card-text>{‌{message}}</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn :color="messageType"
flat
v-if="confirmDlg"
@click="value=true">Yes</v-btn>
<v-btn :color="confirmDlg?'':'primary'"
flat
@click="value=false">{‌{getBtnText()}}</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
<script>
export default {
props: {
confirmDlg: {
type: Boolean,
default: false
},
title: {
type: String,
default: '',
required: true
},
message: {
type: String,
default: '',
required: true
},
messageType: {
type: String,
default: 'warning',
required: true
}
},
data () {
return {
value: false,
dialogue:false
}
},
methods: {
getBtnText () {
if (this.confirmDlg) return 'No'
return 'Ok'
}
}
}
</script>

NotifyDlgPlugin.js:插件安装代码。此方法将在 main.js 中使用 Vue.Use 方法调用。

import NotifyDlg from './NotifyDlg.vue'

export default {
install: (Vue, options) => {
Vue.prototype.$notifyDlg = {
show (message, title, messageType, options = {}) {
options.message = message
options.title = title
options.messageType = messageType
}
}
}
}

从文档中我只了解了可以在 install 方法中调用的全局函数。但我不明白如何调用我创建的对话或如何将 true 或 false 值返回给调用的方法。

对我的问题有什么建议吗?

最佳答案

我想分享我基于 promise 的对话代码:

import Dialog from "./Dialog.vue";

export function confirm(title, message) {
return new Promise((resolve, reject) => {
const dialog = new Vue({
methods: {
closeHandler(fn, arg) {
return function() {
fn(arg);
dialog.$destroy();
dialog.$el.remove();
};
}
},
render(h) {
return h(Dialog, {
props: {
title,
message,
},
on: {
confirm: this.closeHandler(resolve),
cancel: this.closeHandler(reject, new Error('canceled'))
}
});
}
}).$mount();
document.body.appendChild(dialog.$el);
});
}

这将创建对话框,将其添加到 DOM 并在对话框触发 this.$emit('confirm') 事件时解析。

关于javascript - 基于 promise 的对话 vue js?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52960721/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com