React中的Const总是有值"默认:对象"

时间:2017-01-08 16:03:05

标签: javascript reactjs ecmascript-6

我正在使用SlateJS并尝试使用以下内容将数据加载到const中:imgData = data.get("file");

如果我不导入React,这可以正常工作,但是当导入React时,对象包含下面的值。这个价值是多少?这是怎么发生的?我该如何避免这种情况?

default: Object
  Children: Object
  Component: ReactComponent(props, context, updater)
  DOM: Object
  PropTypes: Object
  PureComponent: ReactPureComponent(props, context, updater)
  __spread: ()
  cloneElement: (element, props, children)
  createClass: (spec)
  createElement: (type, props, children)
  createFactory: (type)
  createMixin: (mixin)
  isValidElement: (object)
  version: "15.4.1"
  __proto__: Object
  __proto__: Object

非常感谢您提供的任何帮助。

1 个答案:

答案 0 :(得分:-2)

使用它会对你有所帮助:

imgData = JSON.stringify(data.get("file"));