Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

147
Views
¿Cómo puedo resolver este problema "Error al compilar"
import React, { useEffect } from 'react' import { Row, Col, List } from 'antd' import Axios from 'axios' import { useState } from 'react' import SideVideo from './Sections/SideVideo' import Subscribe from './Sections/Subscribe' function VideoDetailPage(props) { const videoId = props.match.params.videoId const variable = { videoId: videoId } const [VideoState, setVideoState] = useState([]) useEffect(() => { Axios.post('/api/video/getVideoDetail', variable) .then(response => { if (response.data.success) { setVideoState(response.data.videoDetail) } else { alert('fail') } }) }, []) if (VideoState.writer) { return ( <Row gutter={[16, 16]}> <Col lg={18} xs={24}> <div style={{ width: '100%', padding: '3rem 4rem' }}> <video style={{ width: '100%' }} src={`http://localhost:5000/${VideoState.filePath}`} controls /> <List.Item //이 부분은 비디오 좋아요 부분 actions={[<Subscribe userTo={VideoState.writer._id} />]} //따로 component 만들어서 페이지 보여주게 함. //따로 만든 component에 사용자 id를 props로 넘겨주기 위해 userTo={Video.writer._id} 이렇게 사용 > <List.Item.Meta // avatar ={VideoState.writer.image} title={VideoState.title} description={VideoState.description} /> </List.Item> {/* Comment */} </div> </Col> <Col lg={6} xs={24}> <SideVideo /> </Col> </Row> ) } else { <div>...loading</div> } } export default VideoDetailPage

Este es mi código que tiene un problema cuando uso if(VideoState.writer) :

 Failed to compile ./src/components/views/VideoDetailPage/VideoDetailPage.js Line 63:9: Expected an assignment or function call and instead saw an expression no-unused-expressions Search for the keywords to learn more about each error.

No sé cómo puedo resolver este problema.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Tiene una expresión <div>...loading</div> que en realidad no se usa para nada. No devuelto, no asignado a nada, nada. Probablemente quisiste devolverlo, es decir, return <div>...loading</div>;

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!