EN VI
Posts (13)
Questions (15)
2022-05-29 15:59:06
this selectors means when the parent itself is the first child or the last child, in this case, it is both :D this is why it's blue, what you want to do is:const Text = styled.div` color: green;...
Tags: Coding Lập trình React
2022-05-29 15:55:32
The font-size in your VS code is looking white because your VS code theme is different.transition property doesn't work if you are running it on mozilla firefox or any other browser except chrome. In...
Tags: Coding Lập trình css
2022-05-29 15:48:51
You can leave () out if you put everything in one line: {mylist.map((elem, index) => {elem.title})} If you want to return something, but it take several lines, then you have to use ():{mylist.map((el...
Tags: Coding Lập trình React
2022-05-29 15:40:47
It looks like your client receives some invalid XML - either the WSDL itself or the response returned by the server. Try to invoke the client with the trace option set to TRUE and check the actual XML...
Tags: PHP Coding Lập trình
2022-05-29 16:12:09
in CSS use this:root{ scroll-behavior: smooth; } in JavaScript use thisdocument.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener("click", function(e){ e.preven...
Tags: Coding Lập trình Js
2022-05-30 16:57:21
you are not returning anything from maptry to change your code in this wayexport const fetchData = async () => { const response = await fetch(`https://api/`, options); const results = awai...
2022-05-30 17:04:18
You can't set Cookies for other domain as you are on.maybe you can try something like this:User try to loginAPI request from A to B to get a Key ( remembered in Database Site B )Redirect User with thi...
Tags: PHP Coding Lập trình
2022-05-30 17:20:57
From what I have understood, what you are looking for is:def clean(headers): for k, v in headers.items: k = re.sub(r"\s+", " ", k.strip()) yield f"{k.lower()}\t{v}" canonical...
Tags: Coding Lập trình error
2022-05-30 17:26:11
You can simply use .length method to iterate properly through the result.for(var i = 0; i < map["items"].length; i++){...} Or to get rid of code duplication, use a .forEach()map["items"].forEach((ite...
Tags: Coding Lập trình error
2022-05-30 17:28:45
Try below code, refer FilteringTextInputFormatterimport below libraryimport 'package:flutter/services.dart'; Your Widget:TextFormField( keyboardType: TextInputType.number, inputFormatte...

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login