fromJSON
方法从 JSON 对象创建一个包含单元格数据的单元格。
const cell = Cell.fromJSON(json)
json
:JSON 对象,包含单元格数据。返回一个包含单元格数据的单元格对象。
const json = {
id: 'A1',
value: 100,
datatype: 'number',
formula: '',
format: '',
font: '',
border: '',
bgcolor: '',
color: '',
fontSize: '',
underline: '',
italic: '',
bold: '',
strikeout: '',
textAlign: '',
textDecoration: '',
verticalAlign: '',
fontFamily: '',
dataType: '',
merge: ''
}
const cell = Cell.fromJSON(json)
console.log(cell)
输出结果:
{
id: 'A1',
value: 100,
datatype: 'number',
formula: '',
format: '',
font: '',
border: '',
bgcolor: '',
color: '',
fontSize: '',
underline: '',
italic: '',
bold: '',
strikeout: '',
textAlign: '',
textDecoration: '',
verticalAlign: '',
fontFamily: '',
dataType: '',
merge: ''
}
若 json
参数无法解析成单元格对象,会抛出异常。