在下面的代码示例中,为什么带注释的行不能用于导入标记?我正在使用https://github.com/shama/es6-loader

module $ from 'jquery';
module React from 'react';

//import { marked } from 'marked';
var marked = require("marked");

这是一个示例存储库:https://github.com/justin808/react-tutorial-hot/tree/es6

该演示显示:
1. Webpack和热重装
2.反应
3. ES6

最佳答案

您正在使用的destructuring operator如果没有要解构的内容将不起作用,即marked导出函数。
import marked from 'marked'应该可以工作。

09-11 17:45