- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试将 React 集成到我的 angularjs webapp 中。
在我的 Controller 中,我创建了组件,该组件最初具有空的数组属性。当应用程序完成初始化后,我想再次更新 Prop 。我是通过再次调用 ReactDOM.render()
来做到这一点,还是可以保留对此实例的引用并只执行类似 updateProps(newProps)
的操作?
这是从我的 Controller 调用的:
ReactDOM.render(
<NavBar
currencyTabs = {[]}
/>, document.getElementById("navbar-root")
);
然后当数据加载完成后,我需要用完整数组更新 currencyTabs
...
我了解 React 组件 props 如何从父级更新到子级,但我不太明白如何从普通 JS 执行此操作。
最佳答案
这里没有魔法,你只需要重新渲染它。
只需将您的渲染包装到一个函数中,例如:
function renderReactNavbar( tabs = [] ) {
ReactDOM.render(
<NavBar
currencyTabs = { tabs }
/>, document.getElementById("navbar-root")
);
}
并在加载/更新数据后调用它。
或者,您选择从 React 内部加载数据,从长远来看,这可能是更好的选择。
如果您有内部状态,这可能会更难处理。您可以考虑转移到仅支持 Prop 的组件(但由于您不共享您的 React 组件的任何相关代码,所以很难说)
它的外观的一个小例子
// the render method, takes a component and props, and renders it to the page
function renderComponent( component, props ) {
const target = document.querySelector('#container');
ReactDOM.render( React.createElement( component, props ), target );
}
// gets the tabs from the input field, splits based on ,
function getTabsFromInput() {
return document.querySelector('#tabs').value.split(',');
}
// small presentational component, shows the tabs and redirects selection changes through a callback
const Tabs = ({ tabs, selectedTab, onSelectionChanged }) => {
return tabs && <div>{ tabs.map( (tab, key) => {
return <h1 key={key} className={classNames( { 'active': key === selectedTab } ) } onClick={ () => onSelectionChanged( key ) }>{ tab }</h1>;
} ) }</div>;
};
// some initiations
window.addEventListener('load', function() {
// keep a local variable with the data
let defaultProps = {
onSelectionChanged: updateSelection,
selectedTab: 0,
tabs: getTabsFromInput()
};
// handles selection changes
function updateSelection( newTab ) {
defaultProps = {...defaultProps, selectedTab: newTab };
renderComponent( Tabs, defaultProps );
}
// adds an event listener for click events to initiate tab changes
document.querySelector('#updateTabs').addEventListener('click', function() {
defaultProps = {...defaultProps, tabs: getTabsFromInput() };
// render on update
renderComponent( Tabs, defaultProps );
});
// initial render
renderComponent( Tabs, defaultProps );
});
.active {
background-color: blue;
}
<script id="react" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.6.2/react.js"></script>
<script id="react-dom" src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/15.6.2/react-dom.js"></script>
<script id="classnames" src="https://cdnjs.cloudflare.com/ajax/libs/classnames/2.2.5/index.js"></script><div id="container"></div>
<input type="text" value="tab1,tab2" id="tabs" />
<button id="updateTabs" type="button">Update tabs</button>
关于javascript - 如何更新使用 ReactDOM.render() 渲染的 React Component 的 props,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48661924/
我仍在学习如何将 API 数据与 react 和 nextjs 一起使用。但是,为什么我的函数只在我编写 {props.props.title} 而不是我期望的 {props.title} 时起作用?
我仍在学习如何将 API 数据与 react 和 nextjs 一起使用。但是,为什么我的函数只在我编写 {props.props.title} 而不是我期望的 {props.title} 时起作用?
我正在用 TypeScript 构建一个 React 应用程序。我有一个 RequiresPermission基于谓词的组件应该渲染一个或另一个组件并转发所有 Prop 。 type Props =
我想通过 gatsby 布局传递我所有的 props。例如: import React, { Component } from 'react'; export default class Exampl
如果我使用合成属性,那我为什么不直接说: self.property = nil; 这将释放引用计数,并确保我没有悬挂指针。 看起来很简单,但我看到的 99% 的代码似乎都是这样做的: [proper
Eslint 抛出 eslint(react/prop-types) 错误,尽管已经声明了 propTypes。我正在使用 eslint-plugin-react 我研究了其他几个类似的问题以及 li
我正在使用以下由 linter eslint-plugin-react 解析的代码。它返回警告: "product is missing in props validation" 当我在底部的 pro
我正在尝试在 React 应用程序中添加 TypeScript。 版本: "react": "16.9.0", "typescript": "3.5.3", 我有一个像这样的数组 import aLo
我有一个组件 . 如果组件没有 this.props.children , 我想设置 Prop ariaLabel作为isRequired ,否则 in 可以是可选的。我该怎么做? ariaLabe
我应该用一个代替另一个吗?一起使用它们更好吗?谢谢。 最佳答案 prop in obj 检查 obj 是否有名为 prop 的属性,即使它只是从原型(prototype)继承而来。 obj.hasOw
我的组件 Text有 2 个 Prop :isHideable: boolean和 hidden: boolean .我如何允许 Hidden仅在 isHideable 时作为 Prop 是true
我试图将带有一些 Prop 的功能组件发送到另一个组件,并在接收组件中尝试键入检查该组件的某些 Prop 。这是代码: // BaseButton.tsx export type ButtonProp
是否可以从也作为 prop 传递的未知组件推断出正确的 props 类型? 如果已知组件(存在于当前文件中),我可以获得 Prop : type ButtonProps = React.Compone
我对 react 还很陌生,这是我正在努力解决的问题。 有一个父组件 家长 它将 Prop 传递给 child 。 其中一个 Prop ,包括一个要渲染的元素,如下所示: 在子组件中,我想获取这个组
我想做一个 Tabs推断 active 的可能值的组件prop 基于它的 child 拥有的东西 name Prop 。这就是我尝试这样做的方式: import React from 'react'
我对 react 还很陌生,并且只有当用户开始向下滚动时,我才尝试将更多信息加载到记录数组中。问题是新信息出现在数组中,但如果您尝试调用它,它将返回undefined。我在这里不明白什么? 父组件:
因此,如果我对一个组件有很多不同的 Prop ,我希望我可以做类似的事情 const { ...props } = props; 而不是 const { prop1, prop2, prop3, ..
这是我寻求指导的问题类型,因为我不确定我正在寻找的内容是否存在...... 上下文:我正在使用 Firestore 来保存数据,并且正在构建一个可重用的自定义 Hook (React 16.8),以便
我有一个 React 组件,它获取一个配置对象作为 prop,它看起来像这样: { active: true, foo: { bar: 'baz' } } 在
如何附加另一个属性?我有一个 react 组件,其中有人传入 ...props,我想附加一个额外的 Prop 最佳答案 请记住,传递 Prop 的顺序将决定将哪个值传递给该组件。这适用于有两个同名
我是一名优秀的程序员,十分优秀!