如何使用 Javascript(或 ajax 或 jquery)调用 REST Api?
curl -v -X PUT -H "Content-Type: application/json" -H "Accept: application/json" -X PUT --user user:password http://url -d "{\"name\": \"Marcus0.2\",\"start\": 1361381326000,\"end\": 1361640526000}"
我需要帮助将其转换为可用的 ajax 调用。谢谢
$.ajax({
type: 'put',
url: 'https://this.is.my/url',
dataType: 'json',
data: { \"name\": \"Marcus0.3\" , \"start\": 500000 , \"end\": 1361640526000 }
});
此代码不起作用[不知道为什么]。此外,“ https://this.is.my/url ”只是较长 url 的缩写,我不想在网上发布