美文网首页
DocumentTitle 中包含多div标签问题

DocumentTitle 中包含多div标签问题

作者: 菜鸟碎碎恋 | 来源:发表于2016-09-26 17:36 被阅读0次

以下是出现错误的信息:Uncaught Invariant Violation: Minified React error #143; visit http://facebook.github.io/react/docs/error-decoder.html?invariant=143 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.

查看react官方文档可见:

Error Decoder

In the minified production build of React, we avoid sending down full error messages in order to reduce the number of bytes sent over the wire.

We highly recommend using the development build locally when debugging your app since it tracks additional debug info and provides helpful warnings about potential problems in your apps, but if you encounter an exception while using the production build, this page will reassemble the original text of the error.

The full text of the error you just encountered is:

React.Children.only expected to receive a single React element child.

DocumentTitle 不会被react作为element,故会出现以上错误。

故react中DocumentTitle中不可并行包含多个div标签,当然其它标签也一样。

<DocumentTitle>

    <div>  </div> 

   <div>  </div>

</DocumentTitle>

上述即是一个错误的例子。

相关文章

  • DocumentTitle 中包含多div标签问题

    以下是出现错误的信息:Uncaught Invariant Violation: Minified React e...

  • html标签包含规范

    1)标签包含规范1,div可以包含任何标准流下的元素2,p标签中不能包含div和标题标签(h)以及列表标签(ul)...

  • 标签包含规范

    1)标签包含规范 1,div可以包含任何标准流下的元素 2,p标签中不能包含div和标题标签(h)以及列表标签(u...

  • bootstrap旋转木马

    div标签:包含carousel-inner类div标签和图片切换控制按钮a标签。-id属性-carousel类-...

  • 居中:让图片在div中几种方式

    方法一:vertical-align: middle; 先设置一个div包含一个a标签和img标签 让div在页面...

  • 网页设计:HTML常用的五种标签

    div标签 p标签 span标签 a标签 img标签 html:超级文本标记语言 1,div标签: 是在html中...

  • Html>选择符

    包含选择符 div span p{width:100px; height:100px;}ps :(div 标签下的...

  • css3(4)

    边界传导问题 看一个简单的例子:如下图所示:body里面1个div,该div下面包含一个p标签,里面有文字。很简单...

  • 关于在div标签中实现换行空白格展示

    开发过程中可能遇到这样的问题,在编辑器保存输出的内容包含换行标签需要在各个场景的div中展示文字换行及空格效果,这...

  • 【Python爬虫】第三周练习(14)

    一、div标签文本提取将学习视频中xpath.html文件中div标签下文本值“第一个div” ,“第二个div”...

网友评论

      本文标题:DocumentTitle 中包含多div标签问题

      本文链接:https://www.haomeiwen.com/subject/flvqyttx.html