- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我已将衣服添加到后端 Rails api,并且我尝试通过 React 端访问这些元素,我知道我可以使用 mapStateToProps(state){} 函数。但是,我想在来自 reducer (或 redux 存储)的不同应用程序状态之间的 UI 中创建交互性,其中不同状态之间的交互性取决于组件构造函数中的当前状态。我是否可以在构造函数中访问 this.props.contemplatedPiece ? Babel 告诉我模块构建失败:SyntaxError: Unexpected token.
constructor(props){
super(props);
this.props.getInitialPieces();
this.state = {
if (this.props.contemplatedPiece.merch_type == 'top'){
currentLowerComponent: this.props.suggestedBottoms[0],
currentUpperComponent: this.props.contemplatedPiece,
LowerComponents, UpperComponents: this.props.organizePieces();
}
else if (this.props.contemplatedPiece.merch_type == 'bottom'){
currentLowerComponent: this.props.contemplatedPiece,
currentUpperComponent: this.props.suggestedTops[0],
UpperComponents, LowerComponents: this.props.organizePieces();
}
currentComponent: {whichComponent: null, whichPiece: null}
UpperComponentEnabled: false,
LowerComponentEnabled: false
};
};
isOppositeComponentSuggested(whichComponent){
var match = false;
_.debounce((whichComponent) => {
this.props.setContemplatedPiece(whichComponent).then(function(){
this.props.getAncillaryPieces();
if (this.props.contemplatedPiece.merch_type == 'top'){
this.props.suggestedBottoms.map((bottom) => {
if (this.state.currentLowerComponent == bottom){
match = true;
}
});
}
else if (this.props.contemplatedPiece.merch_type == 'bottom'){
this.props.suggestedTops.map((top) => {
if (this.state.currentUpperComponent == top){
match = true;
}
});
}
});
}, 6000);
return match;
}
switchFocus(){
if (this.state.currentUpperComponent.hasFocus()){
this.state.currentLowerComponent.focus();
}
else if(this.state.currentLowerComponent.hasFocus()){
this.state.currentUpperComponent.focus();
}
else {
break;
}
}
render(){
return(
<Wardrobe upperComponent={this.state.currentUpperComponent} lowerComponent={this.state.currentLowerComponent} currentComponent = {this.state.currentComponent} enableCapture={snapshot => this.snapshotMatch = snapshot} />
<div className = "PossibleMatches_Container">
<i class = 'captureOutfit' onClick = {this.snapshotMatch}></i>
{this.state.fieldForOrganizedPiecesArray.UpperComponents.map(function(topPiece){
<UpperComponent key={topPiece.id} id={topPiece.id} ref={(piece)=>{this.setState({currentUpperComponent: piece})}} setCurrentComponent = {(piece) => this.setState(currentComponent.whichPiece: piece, currentComponent.whichComponent: 'u', lowerComponent: null, upperComponent: null)} toggleToPiece={this.setState({currentLowerComponent: this.props.suggestedBottoms[0]}).then(function(){if (this.state.LowerComponentEnabled: false){this.setState(LowerComponentEnabled: true)}else{break;}})} image={topPiece.image} isLowerComponentEnabled={this.state.LowerComponentEnabled} switchComponent={this.switchFocus} evaluatePiece={isOppositeComponentSuggested} className={if (this.state.currentComponent.whichComponent == 'l'){'standalonePiece'}else if(this.state.currentComponent.whichComponent == 'l'){'PossibleMatchCollapse'} else{'UpperComponent_Container'}}/>
});}
{this.state.fieldForOrganizedPiecesArray.LowerComponents.map(function(bottomPiece){
<LowerComponent key={bottomPiece.id} id={bottomPiece.id} ref={(piece)=>{this.setState({currentLowerComponent: piece})}} setCurrentComponent = {(piece) => this.setState(currentComponent.whichPiece: piece, currentComponent.whichComponent: 'l', upperComponent: null, lowerComponent: null);} toggleToPiece={this.setState({currentUpperComponent: this.props.suggestedTops[0]}).then(function(){if(this.state.UpperComponentEnabled: false){this.setState(UpperComponentEnabled: true)}})} isUpperComponentEnabled={this.state.UpperComponentEnabled} switchComponent={this.switchFocus} evaluatePiece={isOppositeComponentSuggested} className={ if (this.state.currentComponent.whichComponent == 'l'){'standalonePiece'} else if(this.state.currentComponent.whichComponent == 'u'){'PossibleMatchCollapse'} else{'LowerComponent_Container'}}/>
});}
</div>
);
}
}
function mapStateToProps(state){
return {
contemplatedPiece: state.possibleMatches.contemplated_piece,
extraTops: state.possibleMatches.extraTops,
extraBottoms: state.possibleMatches.extraBottoms,
standaloneTops: state.possibleMatches.standaloneTops,
standaloneBottoms: state.possibleMatches.standaloneBottoms,
suggestedTops: state.possibleMatches.suggestedTops,
suggestedBottoms: state.possibleMatches.suggestedBottoms,
UpperComponents: state.possibleMatches.UpperComponents,
LowerComponents: state.possibleMatches.LowerComponents
};
}
这是其余的代码
最佳答案
首先,我想指出代码中的一些 javascript 无效表达式:
constructor(){
// To properly access to `this.props` in the Component constructor you must call the `super`
this.props.getInitialPieces();
this.state = {
// next lines is invalid on object initialization
// use instead the ternary operator `?:`
if (this.props.contemplatedPiece.merch_type == 'top'){ // <-- error: invalid syntax (if statement is invalid here)
currentLowerComponent: this.props.suggestedBottoms[0],
currentUpperComponent: this.props.contemplatedPiece,
LowerComponents, UpperComponents: this.props.organizePieces();
}
}
也许你需要这样做:
class MyComponent extends React.Component {
constructor(props){
super(props); // constructor receive `props`, need to call `super`
props.getInitialPieces();
const condition = props.contemplatedPiece.merch_type == 'top';
this.state = {
currentLowerComponent: condition ? this.props.suggestedBottoms[0] : undefined,
// same logic with conditional props
};
}
}
<小时/>
SyntaxError: this is a reserved word
出现新错误是因为在对象声明中您必须指示 propName: value
:
{
propsA: valueA,
propB: this.props.organizePieces().map(function(results){})
}
这里是对更新代码的一些修订/修复,但我建议您阅读 javascript 语言规范并做一些教程来习惯它。
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.props.getInitialPieces();
// this change is related of using an inline map function inline in the object, with no target property to assign the result.
// E.g. Correct syntax { prop: this.props.organizePieces().map() }
const organizedPiecesArray = this.props.organizePieces().map(function(results) {
// need to `return` an Object:
return {
UpperComponents: results.PossibleMatches.UpperComponents,
LowerComponents: results.PossibleMatches.LowerComponents
};
});
const initialState = {
// define property to hold the mapped `organizedPiecesArray`
fieldForOrganizedPiecesArray: organizedPiecesArray,
currentComponent: { whichComponent: null, whichPiece: null },
UpperComponentEnabled: false,
LowerComponentEnabled: false
};
if (this.props.contemplatedPiece.merch_type === 'top') {
this.state = {
...initialState, // spread `initialState` to copy their properties
currentLowerComponent: this.props.suggestedBottoms[0],
currentUpperComponent: this.props.contemplatedPiece,
};
} else if (this.props.contemplatedPiece.merch_type === 'bottom') {
this.state = {
...initialState,
currentLowerComponent: this.props.contemplatedPiece,
currentUpperComponent: this.props.suggestedTops[0],
};
} else {
// if it's possible a third alternative, what's the initial state here?
}
}
}
相关资源:
关于javascript - 我可以访问组件状态中的 redux props/应用程序状态吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49262868/
我仍在学习如何将 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 的顺序将决定将哪个值传递给该组件。这适用于有两个同名
我是一名优秀的程序员,十分优秀!