0

在一个内容编辑器 webpart 上创建并调用

_api/VideoService/Channels('channelId')/Videos

使用 jquery ajax 调用,得到 404 错误。下面是我的ajax代码

    $.ajax({
        type: 'GET',
        url: url,
        async: false,
        crossDomain: true,
        contentType: "application/json",
        dataType: 'jsonp',
        success: function () {
            alert("success");
        },
        error: function (err) {
            alert(err.status + " (" + err.statusText + ")");
        }
    });
4

0 回答 0