- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个在 React 中内置的选择列表,它工作正常,但我不断从 React 中收到错误。我在缩小模式下遇到更多错误,情况更糟。我被定向到 Facebook 链接 https://facebook.github.io/react/docs/error-decoder.html?invariant=119和 https://facebook.github.io/react/docs/error-decoder.html?invariant=120但那里的选项都没有真正帮助我。
我查看了我引用的库,没有发现 React 的重复加载(它是在页面上加载的 CDN 并由 Browserify/Browserify-shim 外部化 - 我已经浏览了 bundle 以查找 React 代码,但还没有找到了。)我通过在页面上注释掉 React 进行了双重检查,一切都尽职尽责地折叠了(如预期的那样),所以我确信它与我的代码以某种方式相关。
根组件看起来像这样...
export default class Select extends React.Component {
constructor(props) {
super(props)
this.state = {
value: this.props.value || ""
}
this.handleSelectChange = this.handleSelectChange.bind(this)
this.clearValue = this.clearValue.bind(this)
}
handleSelectChange(e) {
this.state.value = e.target.value
this.props.onChange(e)
}
clearValue() {
this.setState({ value: this.props.defaultValue })
this.forceUpdate()
}
render() {
const optionNodes = this.props.options.map((obj, index) => {
return <ListItem
key = {index.toString()}
data = {obj}
currentSelectedValue = {this.state.value} />
})
return (
<select
className = "form-control drop-down"
id = {this.props.name}
name = {this.props.name}
onChange = {this.handleSelectChange}
disabled = {this.props.disabled}
value = {this.state.value}>
{this.state.value == this.props.defaultValue &&
<option
id = {`${this.props.name}-placeholder`}
className = "placeholder"
value = {this.props.defaultValue} disabled hidden>
{this.props.placeholder}
</option>}
{optionNodes}
</select>
)
}
}
这里由更高的组件使用......
export default class SelectFormLine extends React.Component {
constructor(props) {
super(props)
this.clearValue = this.clearValue.bind(this)
}
clearValue() {
this.refs.selectList.clearValue()
}
render() {
return (
<div className="row padded-row">
<div className="drop-down-line form-group">
<FormLabel
name = {this.props.name}
className = {this.props.labelClassName}
value = {this.props.label} />
<div className={this.props.inputClassName}>
<Select
name = {this.props.name}
ref = "selectList"
placeholder = {this.props.placeholder}
onChange = {this.props.onChange}
value = {this.props.value}
defaultValue = {this.props.defaultValue}
disabled = {this.props.disabled}
options = {this.props.options} />
<FormInputNotes>{this.props.children}</FormInputNotes>
</div>
</div>
</div>
)
}
}
它位于我的表单中(片段)...
导出默认类 UserManagementForm 扩展 React.Component {
constructor(props) {
super(props)
this.state = {
organisationsDisabled: true,
typesLookupData: [],
organisationsLookupData: []
}
this.handleTypeChange = this.handleTypeChange.bind(this)
}
handleTypeChange(e) {
const changedUser = this.props.object
changedUser.role = e.target.value
this.refs.organisationIdSelect.clearValue()
changedUser.organisationId = ""
this.setState({ organisationsDisabled: false })
this.props.onChange(changedUser)
this.loadOrganisationsLookupData(changedUser.role)
}
render() {
const labelClassNames = "col-md-2 col-sm-4"
const inputClassNames = "col-md-10 col-sm-8"
return (
<InlineContent useFor = {this.props.useFor}>
<Form.Wrapper
formId = {this.props.formId}
object = {this.props.object}
className = "col-md-12"
onSubmit = {this.props.onSubmit}
onSubmitSuccess = {this.props.onSubmitSuccess}>
{this.props.object.id !== undefined && <Form.Hidden name = "ID" value = {this.props.object.id} />}
<Form.ErrorDisplay />
{this.props.managed && this.props.useFor == "create" && <Form.SelectLine
name = "OrganisationId"
ref = "organisationIdSelect"
label = "Organisation"
labelClassName = {labelClassNames}
inputClassName = {inputClassNames}
placeholder = "Please select an organisation…"
onChange = {this.handleOrganisationChange}
value = {this.props.object.organisationId}
disabled = {this.state.organisationsDisabled}
options = {this.state.organisationsLookupData} /> }
{!this.props.managed || this.props.useFor == "edit" && <Form.Hidden name = "OrganisationId" value = {this.props.object.organisationId} />}
<Form.Buttons.SubmitCancel
className = {`${inputClassNames} col-md-offset-2 col-sm-offset-4`}
submitText = {this.props.submitText}
onCancel = {this.props.onCancel} />
</Form.Wrapper>
</InlineContent>
)
}
}
最佳答案
这个错误很奇怪。
我通过将字符串引用更改为 Facebook 所说的开始使用的内容来解决这个问题。 https://facebook.github.io/react/docs/refs-and-the-dom.html
所以基本上你想做
ref={(i) => this._whateverYouWantToCallIt = i}
如果这不能解决问题,您的项目中可能存在双重 React。
关于javascript - addComponentAsRefTo(...) : Only a ReactOwner can have refs - Error in Form with Select List,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44742791/
我想读取帖子的数据并获取用户 key ,然后通过它进行搜索并同时获取用户数据,我尝试过,但它后退了一步,直到它才显示用户名我执行任何其他操作 这是帖子和经过身份验证的用户的 Firebase 实时数据
您知道是否有办法将 js ref 和 css ref 作为单个 ref 包含在 html 中?通常这些 ref 单独包含在 html head 中,但我的经理想知道下游消费者是否有一种简化的方法将这些
我正在使用 Swing+Clojure 开发一个 GUI 应用程序,它需要各种可变数据(例如滚动位置、用户数据、文件名、选定的工具选项等)。 我至少可以看到三种不同的处理这组数据的方式: 创建对所有数
我正在尝试通过 React 使用 ref 属性。我的浏览器出现奇怪的错误,但我无法弄清楚问题出在哪里。谁能向我解释一下为什么我会收到此错误: Error: Invariant Violation: a
在我的程序中,我有模板类,这些模板类主要是用于特殊目的 std::function 的包装器。最小的例子是: template class Foo { public: exp
如果被引用为参数的对象在函数中被修改,是否使用 ref 有关系吗?下面两个函数有区别吗? void DisposeObject(ClassThing c) { c.Dispose(); } vo
尝试将大型但线性的 svn 存储库迁移到 git。 svn 存储库没有标准布局(主干、分支、标签)...只有主干的一个目录。 Ubuntu 12.4 LTS,git 1.7.9.5。 $ git sv
您现在如何设置动态引用? 我收到一个错误 cannot set property of 'test' undefined ,如果我使用 this.someRef['test'] = ref;}/>
试图理解 gerrit 中的 refs/for/refs/* 功能。这个问题与 refs/for/master 无关。 我们什么时候可以使用这个 refs/for/refs/* 功能。 有人可以为此解
我以不同的方式调用 4 种方法时得到不同的结果: static void Main(string[] args) { var emp = new Employee { Name = "ABC"
假设我有以下内容: var t = typeof(Foo).MakeByRefType(); 有没有办法将结果转换回typeof(Foo)? 老实说,我发现的唯一方法是: var t = typeof
我以下列方式使用 ref。那么当在第 5 种方法中创建一个新对象时,是否会一直访问 main 方法中的原始 emp 并在那里创建一个新对象? 如果是,有没有一种方法可以实现相同的功能而无需多次迭代,即
我在文档的 html 标签内有一些文本。文字看起来像这样 I need this text <ref> Some unwanted text </ref> I need thi
一些背景: 前几天我遇到了一些事情,这让我开始思考嵌套函数调用中的重载解析。考虑以下代码: #include void printer(const int &a) { std::cout <<
如果直接从 this.refs 获取元素对象,那么为什么要使用 ReactDOM.findDOMNode? var HelloMessage = React.createClass({ click:f
我在这里做错了什么,或者从 C# 7.2 开始,不支持通过 ref 返回并允许设置的索引器? 作品: public ref byte this[int index] { get { r
看来我现在几乎每天都在这里问问题。我不确定这是好事还是坏事... 今天的“WTF flavor ”涉及我在使用来自 NI Measurement Studio 对象的函数时完全和完全无能为力。与我之前
这个问题在这里已经有了答案: Does foreach() iterate by reference? (10 个答案) Alternative to using ref in foreach? (
给定一个函数声明 dynamic DoSomething(dynamic inputObject) 我可以用枚举调用它作为inputObject: MyEnum myEnum; myEnum = Do
如果我将数组传递给函数并在函数内对数组进行更改,则函数外部存在的数组会反射(reflect)这些效果。例如: var myArr = [1, 2, 3]; function popAll(arr) {
我是一名优秀的程序员,十分优秀!