gpt4 book ai didi

javascript - 使用 JSOM 将错误记录到 ULS

转载 作者:行者123 更新时间:2023-11-29 18:04:45 26 4
gpt4 key购买 nike

对于 SharePoint 2013,有什么方法可以使用 JSOM 登录到 ULS?

如果可能的话,我想避免做一些事情,比如编写一个可以用 ajax 调用的自定义处理程序。

最佳答案

SharePoint 提供名为 SharePoint Diagnostics (diagnostics.asmx) 的 Web 服务,此 Web 服务使客户端应用程序能够将诊断报告直接提交到 ULS 日志,请遵循 Writing to the SharePoint Unified Logging Service from JavaScript了解更多详情。

SharePoint JavaScript 库 (init.js) 包含以下使用诊断 Web 服务的函数:

function ULSOnError(msg, url, line) {
return ULSSendExceptionImpl(msg, url, line, ULSOnError.caller);
}



function ULSSendException(ex) {
var message = ex.message;

if (typeof message == "undefined")
message = ex.toString();
ULSSendExceptionImpl(message, location.href, 0, ULSSendException.caller);
}

示例

var ctx = SP.ClientContext.get_current();
var list = ctx.get_web().get_lists().getByTitle(listTitle);
ctx.load(list);
ctx.executeQueryAsync(function() {
//...
},
function(sender,args){
ULS.enable = true; //ensure ULS logging is enabled
ULSOnError('An error occured while getting list' + args.get_message(), location.href, 0);
});

关于javascript - 使用 JSOM 将错误记录到 ULS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32254661/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com