本文介绍了为什么 PNotify 选项 `after_open` 不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现了类似的问题
但是属性 after_open
不起作用
我使用 webpack
和 npm
pnotify 包 带有下一个代码:
I use webpack
and npm
pnotify package with next code:
entry.js
'use strict';
let PNotify = require('pnotify');
PNotify.prototype.options.styling = 'bootstrap3';
(new PNotify({
//...
after_open(ui) {console.log('after_open');},
//...
}));
通知显示,但没有after_open
问题出在哪里?
推荐答案
对于使用 callbacks
需要包含(额外的 pnotify 模块)
For using callbacks
need include (extra pnotify module)
'use strict';
let PNotify = require('pnotify');
require('pnotify/dist/pnotify.callbacks.js');
/* next code */
这篇关于为什么 PNotify 选项 `after_open` 不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!