GithubHelp home page GithubHelp logo

Comments (6)

egonSchiele avatar egonSchiele commented on April 24, 2024

The HTML spec says the value has to be a string (see here), and it looks like React strongly wants all values to be strings to comply with this spec.

There's a check to make sure the value attribute is a string.

Values get coerced to strings here.

@types/react says the type of value is:

value?: string | ReadonlyArray<string> | number | undefined

from react.

naveen521kk avatar naveen521kk commented on April 24, 2024

The HTML spec says the value has to be a string (see here), and it looks like React strongly wants all values to be strings to comply with this spec.

I thought it would be better if react supported doing so, could avoid some issues. Is there any reason why React wants all values to be string?

from react.

KrishKuChhabra avatar KrishKuChhabra commented on April 24, 2024

import "./styles.css";
import React,{useState} from "react";

export default function App() {
const [a, setA] = useState();
return (
<input
type="date"
value={a}
onChange={(e) => {
setA(e.target.value);
}}
/>
);
}

from react.

Almas456 avatar Almas456 commented on April 24, 2024

You are correct that passing a Date object directly to the value prop of a date picker component in React can be problematic. This is because the value prop expects a string in a specific format, and passing a Date object directly will result in an incorrect format that the browser cannot understand.

To avoid this issue, you can use a library like moment.js or date-fns to format the Date object into a string that can be understood by the date picker component. These libraries provide functions to format dates in a variety of formats, including the format required by the date picker.

Alternatively, if you don't want to use a library, you can manually format the Date object using the built-in Date methods. For example, you could use the getFullYear(), getMonth(), and getDate() methods to get the year, month, and day of the Date object, and then concatenate them into a string in the format required by the date picker.

It would be nice if React had built-in support for passing Date objects directly to the value prop of a date picker component, but at the moment, manual conversion is still required to ensure that the date is displayed correctly.

from react.

naveen521kk avatar naveen521kk commented on April 24, 2024

It would be nice if React had built-in support for passing Date objects directly to the value prop of a date picker component

That's why I opened this issue 🙂

from react.

YantD729 avatar YantD729 commented on April 24, 2024

I feel like it is kind of simple, may I have a try? I would like to be the asignee.

from react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.