|
本帖最后由 OK论坛 于 2024-9-7 22:30 编辑
发起GET请求
- fetch('https://www.oklun.com/')
- .then(response => {
- if (!response.ok) {
- throw new Error('Network response was not ok');
- }
- return response.json(); // 解析JSON数据
- })
- .then(data => {
- console.log(data); // 处理数据
- })
- .catch(error => {
- console.error('Fetch error:', error);
- });
复制代码 发起POST请求
- fetch('https://www.oklun.com/', {
- method: 'POST', // 请求方法
- headers: {
- 'Content-Type': 'application/json', // 指定发送信息至服务器时内容编码类型
- },
- body: JSON.stringify({
- key: 'value', // 发送的数据
- }),
- })
- .then(response => {
- if (!response.ok) {
- throw new Error('Network response was not ok');
- }
- return response.json(); // 假设服务器返回的是JSON
- })
- .then(data => {
- console.log(data); // 处理返回的数据
- })
- .catch(error => {
- console.error('Error:', error);
- });
复制代码 |
|