我正在使用 JavaScript 开发 SharePoint RESTful API。使用_spPageContextInfo时它不起作用。
错误:未捕获的 ReferenceError:_spPageContextInfo 未定义
这是我使用的代码
<html xmlns="http://www.w3.org/1999/xhtml">
<script src="../Scripts/jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$.getJSON(_spPageContextInfo.webServerRelativeUrl + "/_api/web/currentuser",
function (data) {
$("#message").text('hello' + data.d.Title);
});
});
</script>
...