ES6中“require”语句的等效项:* .plugin(require('*'))

时间:2017-10-23 05:48:55

标签: javascript ecmascript-6 pouchdb

我在ES5中有以下两个陈述:

var PouchDB = require("pouchdb");
PouchDB.plugin(require('pouchdb-authentication'));

我想在ES6中实现两个语句,如下所示:

import PouchDB from 'pouchdb';
???

我不知道如何在ES6中实现第二个语句

1 个答案:

答案 0 :(得分:3)

我先试试这个:

import PouchDB from 'pouchdb';
import PouchDBAuth from 'pouchdb-authentication';

PouchDB.plugin(PouchDBAuth);

由于import在ES6中是静态的,因此您可能需要为其提供自己的行。