как разделить тело на выборку js? - PullRequest
0 голосов
/ 16 марта 2020

Я не знаю, является ли это лучшим способом публикации в моем API, но POST работает нормально, и я просто хочу, чтобы он отделял ответ от моего тела как params.

"response" - ---: "{\" Id \ ": \" 5e6fc60ef8070b00243ba80a \ "}",

const url = 'https://#####';

// create request object
        const request = new Request(url, {
            method: 'POST',
            mode: 'no-cors',
            body: JSON.stringify({
            "Id": userID
        }),
            headers: {
                 "accept": "application/json;odata=verbose",
                 "contentType": "text/xml"
            }
        });

        // pass request object to `fetch()`
        fetch(request)
            .then(res => res.json())
            .then(res => console.log(res));

      }
...