SP. Свойство Web.syndicationEnabled (sp.js)
Получает или задает значение, указывающее, включены ли RSS-каналы на сайте.
Дата последнего изменения: 27 апреля 2014 г.
Область применения: apps for SharePoint | SharePoint Foundation 2013 | SharePoint Server 2013
var value = SP.Web.get_syndicationEnabled ()
var value = SP.Web.set_syndicationEnabled ()
Возвращаемое значение
Тип: Boolean
true , чтобы включить синдикацию в веб-сайта; в противном случае — false.
Пример
В следующем примере создается кнопку ввода на страницу приложения, которое отображает журнал результатов аудита синдикации.
<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
<script type="text/ecmascript" language="ecmascript">
var webCollection;
function runCode() {
var clientContext = new SP.ClientContext.get_current();
if (clientContext != undefined && clientContext != null) {
var web = clientContext.get_web();
this.webCollection = web.get_webs();
clientContext.load(this.webCollection);
clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
}
}
function onQuerySucceeded() {
var doc = new ActiveXObject('Msxml2.DOMDocument.3.0');
var root = doc.appendChild(doc.createElement('SyndicationAuditResults'));
var webEnumerator = this.webCollection.getEnumerator();
while (webEnumerator.moveNext()) {
var subWeb = webEnumerator.get_current();
var siteName = root.appendChild(doc.createElement('site'));
siteName.setAttribute('title', subWeb.get_title());
// Set any other SP.Web properties, such as the title, as attributes of the element.
//siteName.setAttribute('url', webEnumerator.get_title());
var syndicationAudit = siteName.appendChild(doc.createElement('SyndicationResults'));
var compileSyndicationStatus = '';
// Use the allowRssFeeds property to determine whether the site allows RSS feeds.
if (subWeb.get_allowRssFeeds()) {
compileSyndicationStatus += "RSS Feeds Allowed! | ";
}
else {
compileSyndicationStatus += "RSS Feeds Not Allowed! | ";
}
// Use the syndicationEnabled property to test whether the RSS feeds enabled on the site.
if (subWeb.get_syndicationEnabled()) {
compileSyndicationStatus += "RSS Syndication Is Enabled!";
}
else {
compileSyndicationStatus += " RSS Syndication Is Not Enabled!";
}
syndicationAudit.setAttribute('result', compileSyndicationStatus);
}
var str = doc.xml;
alert('Syndication audit results log: \n\n' + str);
}
function onQueryFailed(sender, args) {
alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
}
</script>
<input id="Button1" type="button" value="Run Code" onclick="runCode()" />
</asp:Content>
Конечная точка ресурса REST
Дополнительные сведения см. в разделе Веб-ресурс.
Структура URI конечной точки
http://<sitecollection>/<site>/_api/web/syndicationEnabled
Запросы HTTP
Этот ресурс поддерживает следующие команды HTTP:
- POST
Синтаксис POST
POST http://<sitecollection>/<site>/_api/web/syndicationEnabled
Синтаксис GET
GET http://<sitecollection>/<site>/_api/web/syndicationEnabled