我想发送带有形式的电子邮件,并将其发送到节点,我使用axios.post,这是我的代码:
RedBackground(
child: Text('hello world'),
)
错误消息是:
RedBackground(
child: MyBorder(
child: Text('hello world'),
),
)
我不知道为什么
答案 0 :(得分:2)
您必须设置后端服务器baseUrl,您可以像这样
await axios.post("baseUrl/send", { name, number, email, message });
或者您可以创建axios实例并设置基本URL并使用您的实例发送请求
const instance = axios.create({
baseURL: 'https://some-domain.com/api/',
timeout: 1000,
headers: {'X-Custom-Header': 'foobar'}
});
然后使用该实例发送请求