|
|
@ -40,7 +40,7 @@ export function predictReaction(mol1, mol2) {
|
|
|
|
const url = 'http://127.0.0.1:5000/predict';
|
|
|
|
const url = 'http://127.0.0.1:5000/predict';
|
|
|
|
return axios.get(url, { params: { mol1, mol2 } })
|
|
|
|
return axios.get(url, { params: { mol1, mol2 } })
|
|
|
|
.then(response => Number(response.data))
|
|
|
|
.then(response => Number(response.data))
|
|
|
|
.catch(error => console.error(error));
|
|
|
|
.catch(error => {console.error(error);throw new Error('请求出错');}); // 抛出错误
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|