Issue I have another data folder with nested objects inside arrays I want to access them with .map function. Its working perfectly fine with divs and h3 but when it comes to this it says y is not defined import
Continue readingTag: reactjs
[SOLVED] how to reduce Nextjs Static HTML Export Page size on disk?
Issue I am using Nextjs Static HTML Export and it’s generating each page (Just HTML Code) with a size of 100kb + on disk. Is there a way to reduce page size on disk? Solution I reduced page size by
Continue reading[SOLVED] How can I display maximum item selected once i have selected 3 items from dropdown
Issue I have multiselect dropdown items with checkboxes in my react app, what I am trying to achieve is if I checked any three items, then dropdown should display maximum items selected and if I unchecked anyone of them, it
Continue reading[SOLVED] How to loop through a subarray of input objects and access value – ReactJS, cannot type in input
Issue I am working on this Form, which will allow to add multiple users and for each user is allowed add multiple goals. However each of these would be an input field. So far I have created the input field
Continue reading[SOLVED] react-export-excel how to hide column in excel when exported?
Issue Hi I hope the title is enough to understand my problem. There is no error when exporting data, I just want that if the checkbox is unchecked or false it will hide the excel column of excel when exported.
Continue reading[SOLVED] (React Native) Undefined is not an object (evaluating 'navigation.navigate')
Issue From App.js, I declare the "FollowingScreen", which is made of a module that exports "Following" export const FollowingScreen = ({route, navigation}) => { return ( <ScrollView style={styles.scrollView}> <View style={{ flex: 1, justifyContent: ‘center’, alignItems: ‘center’, backgroundColor: "#262423" }}> <Following
Continue reading[SOLVED] Get system region in Safari for iOS
Issue In my web app there is an input for the amount with currency. I’m using React Currency Input Field to format it. On my phone I have language set to Spanish and region set to Taiwan. Their decimal separators
Continue reading[SOLVED] react filter from MongoDB
Issue there I have a question.I use the code with Project.jsx and ProductList.jsx When I use the code it always reply me Error: Warning: Each child in a list should have a unique "key" prop. Check the render method of
Continue reading[SOLVED] How to update a document with dynamic variable and nested objects in Mongodb
Issue I have documents, each with the following structure: { … "Lessons": [], "Students": { "Monday": { }, "Tuesday": { }, … }, "CampYear": "aprs22", } What I’m after is to dynamically insert data into one of the day objects
Continue reading[SOLVED] React axios.get 401 unauthorized
Issue I used the postman for testing my url,and it has response data(It’s correct). Url:http://localhost:8000/api/products/find/6337d5d73ec2c05d7c11bc63(ProductId). In postman,it could get response data. I wonder I do give it Bearer token in my requestMethods.js,which imported in /pages/Product.jsx. But when I use the
Continue reading