作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个组成部分:
class UnitMonitor extends PureComponent {
constructor() {
super();
}
state = {
img: null,
};
onChangeShcema = schemaID => {
axios.get("/api/schemata/get-schemata-nodes/" + schemaID).then(response => {
let path = response.data["0"]["file"];
// call loadFile function of child component is needed
});
render() {
return (
<Row type="flex" className="">
<Col span={25}>
<SvgViewer />
</Col>
</Row>
);
}
};
子组件:
const SvgViewer = () => {
const loadFile = path => {
let svgFile = require("./images/" + path);
const svg = document.querySelector("#svgobject");
svg.setAttribute("data", svgFile);
};
return (
<div className="unit-schema-container1">
<object id="svgobject" type="image/svg+xml" data={null}></object>
</div>
);
};
export default SvgViewer;
最佳答案
在 React 中,尝试在父级上运行子方法不是一个好主意,因为这主要是设计不当的标志。由于您想动态运行 SVG,您可以传递一个带有路径或所需内容的 prop,以便动态加载它。但是,如果您坚持在父级上运行该方法,请查看此 post关于如何做到这一点。
关于reactjs - 如何从react.js中的父级调用功能组件中子级的功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59485383/
我是一名优秀的程序员,十分优秀!