我有这个 onChange 方法及其下面的 React-Jsonschema-Form 相关函数调用。我面临的问题是,传递给 computeValueByFormula 时的 newFormData 没有传递异步值。
onChange = ({ schema, formData }) => {
const { properties } = schema
this.updateTotalCell(properties)
lookUpValue(properties, formData).then(newFormData => {
const newFormData2 = computeValueByFormula(properties, newFormData)
this.setState({ formData: newFormData2 })
})
}
// recursive function to do math calculation on string formula input
// use case: mathCalculation("1 * 2 + 4 / 2 - 6")
export function mathCalculation (formula) {
const plusOperator = '+'
const minusOperator = '-'
const multiplyOperator = '*'
const divideOperator = '/'
if (formula.indexOf(plusOperator) > 0) {
const operands = formula.split(plusOperator)
let total = 0
operands.forEach(operand => {
total = total + mathCalculation(operand)
})
return total
}
else if (formula.indexOf(minusOperator) > 0) {
const operands = formula.split(minusOperator)
let total = 0
operands.forEach((operand, index) => {
if (index === 0) {
total = mathCalculation(operand)
}
else {
total = total - mathCalculation(operand)
}
})
return total
}
else if (formula.indexOf(multiplyOperator) > 0) {
const operands = formula.split(multiplyOperator)
let total = 1
operands.forEach(operand => {
total = total * mathCalculation(operand)
})
return total
}
else if (formula.indexOf(divideOperator) > 0) {
const operands = formula.split(divideOperator)
let total = 1
operands.forEach((operand, index) => {
if (index === 0) {
total = mathCalculation(operand)
}
else {
total = total / mathCalculation(operand)
}
})
return total
}
return Number(formula)
}
// compute field value based on value of other fields
export function computeValueByFormula (properties, formData) {
let newFormData = {...formData}
Object.keys(properties).forEach(key => {
if (properties[key].formula) {
const formula = properties[key].formula
let operands = formula.replace(/\+|-|\*|\//g, ' ').split(' ')
operands = operands.map(operand => formData[operand])
if (properties[key].type === 'number') {
const operators = formula.replace(/\w/g, '').split('')
const updatedFormula = operands.map(operand => operators.length > 0 ? operand + operators.shift() : operand).join('')
newFormData[key] = mathCalculation(updatedFormula)
}
else if (properties[key].type === 'string'){
newFormData[key] = operands.join(' ')
}
}
else if (properties[key].type === 'array') {
if (formData[key] !== undefined) {
newFormData[key].forEach((item, childKey) => {
newFormData[key][childKey] = computeValueByFormula(properties[key].items.properties, formData[key][childKey])
})
}
}
})
return newFormData
}
// lookup value based on value of other field
export function lookUpValue (properties, formData, parentFieldName, parentFormData) {
let newFormData = {...formData}
Object.keys(properties).forEach(async (key) => {
if (properties[key].lookup) {
const { collection, field, parameterField } = properties[key].lookup
if (parentFormData !== undefined) { // pattern is in array field item
if (parameterField.indexOf(':') > 0) { // parsing array field item
const arrayRef = parameterField.split(':')
const arrayField = arrayRef[0]
const itemField = arrayRef[1]
if (arrayField === parentFieldName) {
const lookupValue = formData[itemField]
newFormData[key] = await axios.get(`${API_URL}/record-lookup?collection_id=${collection}&lookup_field=${itemField}&lookup_value=${lookupValue}&lookup_target_field=${field}`)
.then(res => res.data.data)
}
} else {
const lookupValue = parentFormData[parameterField]
newFormData[key] = await axios.get(`${API_URL}/record-lookup?collection_id=${collection}&lookup_field=${parameterField}&lookup_value=${lookupValue}&lookup_target_field=${field}`)
.then(res => res.data.data)
}
} else {
const lookupValue = formData[parameterField]
newFormData[key] = await axios.get(`${API_URL}/record-lookup?collection_id=${collection}&lookup_field=${parameterField}&lookup_value=${lookupValue}&lookup_target_field=${field}`)
.then(res => res.data.data)
}
}
else if (properties[key].type === 'array') {
if (formData[key] !== undefined) {
newFormData[key].forEach(async (item, childKey) => {
newFormData[key][childKey] = await lookUpValue(properties[key].items.properties, formData[key][childKey], key, formData).then(data => data)
})
}
}
})
return Promise.resolve(newFormData)
}
我想要完成的是根据用户在表单上的输入来查找一个值。假设我在数据库上有货币表,每当用户更改货币名称的下拉选择时,另一个应该保存货币汇率的字段将执行服务器调用以从数据库中获取相关的货币数据。
该字段将在架构上有一个查找字段。与对其进行数学计算的字段相同,将在架构上具有公式字段。
在服务器调用之后,它会以某种方式更新其他地方的 formData,但是传递给 computeValueByFormula 的 formData 不会更新。即使我在没有展开运算符的情况下直接传递它。
这在表单上给了我一个空白字段,而在 formData 我有值。
注意:评估数组字段项所需的函数的递归形式。