新年快乐!
我想获取文件路径。 但是有一些飞行情报的名字。 例如)2019.12,2019.11 ... 2019.01 所以,我无法获取文件路径 我如何获得正确的道路? 我想转到2019.12文件夹,但错误显示x819.12 ..
const clickCell = (columnName,row_id,store) => {
console.log('columnName', columnName)
if (columnName.name !== 'email') {
alert(columnName.name)
if (row_id == localStorage.getItem('updategalleryId')) {
//do something
} else {
updateIdlocal = null;
}
}
}
const Cell = ({row, column, value, ...restProps }) => {
const content = column.name === "main_image" ? <img alt="img" className="artwork-iconImg" src={value} /> : value;
console.log('column -> value', column.name + "->" + value)
const data_target = "#Add_gallery_Modal"
const data_target_null = ''
return <Table.Cell {...restProps}
data-toggle="modal" data-target = {column.name !== 'email' ? data_target : data_target_null}
onClick={() => clickCell(column,row.id,store)}>{content}</Table.Cell>;
};
这是我的代码。
FileNotFoundError: [WinError 3] 지정된 경로를 찾을 수 없습니다: 'F:\\FastCampus\\업무자동화 MAX\x819.12'