- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
全面警告:react-dom.development.js:2592 指定的值“”不符合要求的格式。格式为“#rrggbb”,其中 rr、gg、bb 是两位十六进制数。
代码运行良好。它正在做它应该做的事情,即:每个输入都会更改按下按钮后出现/更新的方 block 的背景颜色。
代码运行但未出现警告的唯一实例是在开发过程中,因为我弄乱了颜色输入并且我试图更改与输入属于同一组件的 mockdiv 的背景.第二个我解除状态它开始表现得像这样。
但最好的部分是:当我告诉它 Console.log this.state.color.hex(这是改变背景颜色的值)它 console.logs "#00ff40""#ff0000""# 0000ff"和 "#ffff00"- 这就是为什么我不知道如何摆脱这个警告。
我不认为这个错误是由 changeHandler 函数引起的。我有这个功能的许多不同版本,它对这个警告影响不大。同样,此警告的另一个问题 ( Warning when using color control in React JS ) 有另一个完全不同版本的 changeHandler 函数,但仍然有相同的错误。并且我最初对值颜色属性的所有实例只有一个 changeHandler 函数,但错误仍然存在。但是如果是的话——我很想知道如何改变它,如果这意味着摆脱这个警告。
结构总结为:
复选框 => ButtonPerSquare =>主页
Squares => SquaresWrapper =>HOME
然后 Home 将两者合并并在单击按钮时呈现方 block ,该按钮也在 Home 上。
Checkbox.js://我知道这不是一个合适的名字,但它已经在我的每个新项目的模板上被这样调用了。
import React from "react";
class CheckBoxes extends React.Component {
render() {
return (
<div>
<input
type={this.props.type}
className={this.props.class}
value={
this.props.class === "input1"
? this.props.color1
: this.props.class === "input2"
? this.props.color2
: this.props.class === "input3"
? this.props.color3
: this.props.class === "input4"
? this.props.color4
: console.log("blue")
}
onChange={
this.props.class === "input1"
? event => this.props.handleChange1(event)
: this.props.class === "input2"
? event => this.props.handleChange2(event)
: this.props.class === "input3"
? event => this.props.handleChange3(event)
: this.props.class === "input4"
? event => this.props.handleChange4(event)
: console.log("blue")
}
/>
<span>{this.props.sp1}</span>
</div>
);
}
}
export default CheckBoxes;
ButtonPerSquare.js:
import React, { Component } from "react";
import Checkboxes from "./Checkboxes";
// import "./../App.css";
const numbers = ["1", "2", "3", "4"];
// const colors = ["#ffffff", "#F7E3B3", "#71EB92", "#000fff"];
const classes = ["input1", "input2", "input3", "input4"];
class HeaderButtons extends Component {
render() {
//sp is for the span element in the Checkboxes function.
return (
<header className={this.props.headerClass}>
{numbers.map((nums, col) => {
// const keys = numbers[nums];
// console.log(keys);
return (
<Checkboxes
color1={this.props.color1}
color2={this.props.color2}
color3={this.props.color3}
color4={this.props.color4}
// color2={this.props.color2}
// color3={this.props.color3}
// color4={this.props.color4}
handleChange1={event => this.props.handleChange1(event)}
handleChange2={event => this.props.handleChange2(event)}
handleChange3={event => this.props.handleChange3(event)}
handleChange4={event => this.props.handleChange4(event)}
//this.props.handleChange}
background={this.props.background}
// className="ColorInput"
// color={this.props.color}
sp1={nums}
key={nums}
type="color"
// defaultValue={colors[col]}
class={classes[col]}
// value="red"
/>
);
})}
{/* one parethesis for return.. one curly for the funct... another parenthesis for map... and the blue curly THEN closing header */}
</header>
);
}
}
export default HeaderButtons;
方形.js
import React, { Component } from "react";
class Squares extends Component {
render() {
return (
<div
id={this.props.id}
className="Square"
style={{
background:
this.props.id === "square1"
? this.props.background1
: this.props.id === "square2"
? this.props.background2
: this.props.id === "square3"
? this.props.background3
: this.props.id === "square4"
? this.props.background4
: console.log("blue")
}}
>
Blue
</div>
);
}
}
export default Squares;
SquaresWrapper.js:
import React, { Component } from "react";
import Squares from "./Squares";
// import "./../App.css";
const numbers = ["1", "2", "3", "4"];
// const backgrounds = ["#ffffff", "#F7E3B3", "#71EB92", "#000fff"];
const classes = ["square1", "square2", "square3", "square4"];
class SquaresWrapper extends Component {
// constructor(props) {
// super(props);
// this.state = {};
// }
render() {
//sp is for the span element in the Checkboxes function.
return (
<section className={this.props.sectionClass}>
{numbers.map((nums, col) => {
// const keys = numbers[nums];
// console.log(keys);
return (
<Squares
id={classes[col]}
key={nums}
background1={this.props.background1}
background2={this.props.background2}
background3={this.props.background3}
background4={this.props.background4}
// value="red"
/>
);
})}
{/* one parethesis for return.. one curly for the funct... another parenthesis for map... and the blue curly THEN closing header */}
</section>
);
}
}
export default SquaresWrapper;
首页:
import React, { Component } from "react";
import HeaderButtons from "./ButtonPerSquare";
import ReactDOM from "react-dom";
// import Paragraph from "./Paragraph";
import SquaresWrapper from "./squaresWrapper";
class Home extends Component {
constructor(props) {
super(props);
this.state = {
color1: { hex: "" },
color2: { hex: "" },
color3: { hex: "" },
color4: { hex: "" }
};
}
render() {
return (
<div className="creatorDiv">
<HeaderButtons
color1={this.state.color1.hex}
color2={this.state.color2.hex}
color3={this.state.color3.hex}
color4={this.state.color4.hex}
handleChange1={event =>
this.setState({
color1: { hex: event.target.value }
})
}
handleChange2={event =>
this.setState({
color2: { hex: event.target.value }
})
}
handleChange3={event =>
this.setState({
color3: { hex: event.target.value }
})
}
handleChange4={event =>
this.setState({
color4: { hex: event.target.value }
})
}
headerClass="HeaderDiv"
/>
<button
onMouseDown={() =>
ReactDOM.render(
<SquaresWrapper
sectionClass="squaresWrapper"
background1={this.state.color1.hex}
// {this.state.color1}
background2={this.state.color2.hex}
// {this.state.color2}
background3={this.state.color3.hex}
// {this.state.color3}
background4={this.state.color4.hex}
// {this.state.color4}
/>,
document.getElementById("blue")
)
}
>
Create Color
</button>
<div id="blue"></div>
</div>
);
}
}
export default Home;
最佳答案
此警告的简单解决方案“此警告不符合要求的格式。格式为“#rrggbb”,其中 rr、gg、bb 为两位十六进制数。”
在输入中使用默认值[type=color]
<input type="color" name="xyz" value="#ffffff" id="xyz" >
#ffffff 是默认值或格式。
关于javascript - React中颜色输入 : The format is "#rrggbb" where rr, gg,bb为两位十六进制数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59606939/
我必须将格式为#RGB 的颜色字符串转换为#RRGGBB,例如#0af 到#RRGGBB,现在有人可以使用android 帮忙吗 最佳答案 一种方法是: String rgb = "#0AF"; St
#414141 和#AARRGGBB 的值是多少?#52b531 又是什么值?我如何使用 PHP 转换它? 问候, 奔腾10 最佳答案 AA 是 Alpha channel ,直接转换是将 AA 设置
我想设置值:红色:0.910 绿色:0.969 蓝色:0.996 alpha:1.0 我得到的颜色是: int color=Color.argb(1.0,0.910,0.969,0.996) 但这行不
我发现很多网站都解释了 IE 渐变应该使用: .IEGradient { filter: progid:DXImageTransform.Microsoft.gradient(Gradient
全面警告:react-dom.development.js:2592 指定的值“”不符合要求的格式。格式为“#rrggbb”,其中 rr、gg、bb 是两位十六进制数。 代码运行良好。它正在做它应该做
全面警告:react-dom.development.js:2592 指定的值“”不符合要求的格式。格式为“#rrggbb”,其中 rr、gg、bb 是两位十六进制数。 代码运行良好。它正在做它应该做
我在 xml 文件的 textColour 属性中给出了颜色代码。 即 android:textColor="#ffffffffff" 我收到此错误:错误:颜色值无效 - 必须是 #rgb、#argb
我正在做有关颜色选择器的项目。我在网站上找到了示例代码: http://wptrafficanalyzer.in/blog/android-color-picker-application-using
我的十六进制颜色字符串:#ffffff 我想要简单的方法将字符串#rrggbb转换为int r; int g; int b; int color = (int)Long.parseLong(myHex
我有一个传感器,它以 16 位格式提供 vibgyor 的每种颜色,现在我想使用该 vibgyor 的数据生成 24 位颜色。请指导我如何进行此转换。先感谢您。-达南杰 最佳答案 两种颜色深度都使用十
我正在尝试为我正在编写的程序设置一些通用颜色。我创建了一个 colors.xml 文件,并试图直接从 layout.xml 文件中引用颜色。我相信我这样做是正确的,但是它给了我以下错误: Color
我是一名优秀的程序员,十分优秀!