文件名称:null-default-props
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-27 16:47:19
JavaScript
空默认道具 这是一个 React JS mixin,用于解决需要默认值的 null props。 问题 将 null(作为道具)传递给组件并不意味着该组件将使用默认值。 var React = require('react'); var Component = React.createClass({ getDefaultProps: function() { return { myProp: 'Default Value' } }, render: function(){ return
{this.props.myProp}
; } })Default value
用法 为【文件预览】:
null-default-props-master
----__tests__()
--------null-default-props-test.js(1KB)
--------support()
----.gitignore(27B)
----index.js(431B)
----readme.md(1KB)
----package.json(822B)