到目前为止,我能够在列表上执行 CRUD 操作,我想知道是否可以在站点栏上执行此操作,我尝试在网上找到它,但我实际上什么也没找到,我专门在这里放一个问题只是为了了解它是否可能,以防万一可以请任何人为我提供一些资源以便我可以学习? 提前谢谢。
这完全是你需要的,几周前我也为工作做了。
var ctx;
var web;
var fieldChoice;
var fieldName;
var values;
$(function () {
SP.SOD.executeOrDelayUntilScriptLoaded(Function.createDelegate(this, function () {
fieldName = $('#dropdown').find(":selected").text();
populateValues(fieldName);
}), 'SP.js');
});
function selection() {
fieldName = $('#dropdown').find(":selected").text();
populateValues(fieldName);
}
function populateValues(fieldName) {
ctx = SP.ClientContext.get_current();
web = ctx.get_web();
fieldChoice = ctx.castTo(web.get_availableFields().getByTitle(fieldName), SP.FieldChoice);
ctx.load(this.fieldChoice);
ctx.executeQueryAsync(Function.createDelegate(this, this.OnLoadSuccess), Function.createDelegate(this, this.OnLoadFailed));
}
/* Displays the vaules of the array in the textarea */
function OnLoadSuccess() {
values = fieldChoice.get_choices();
$("textarea#textareadisplay").val(values.join("n"));
}
function OnLoadFailed(e, args) {
alert();
}
/* Push the textarea values in an array */
function addItemsToColumns() {
values = $('textarea#textareadisplay').val().split('n');
columnSpaceDelete();
updateFieldChoice();
}
/* Function to delete empty values in the array */
function columnSpaceDelete() {
for (x = 0; x <= values.length - 1; x++) {
var a = values.indexOf("");
if (a !== -1) {
values.splice(a, 1);
}
}
}
/* Update the columns values whit the values in the array */
function updateFieldChoice() {
fieldChoice.set_choices(values);
fieldChoice.update();
ctx.executeQueryAsync(function () { }, function () { });
}
和相对的 HTML:
<select id="dropdown" name="dropdown" onchange="selection()">
<option value="EngineType_Cylinders">EngineType_Cylinders</option>
<option value="EngineType_EngineCycle">EngineType_EngineCycle</option>
<option value="EngineType_EngineFamily">EngineType_EngineFamily</option>
<option value="EngineType_Euro">EngineType_Euro</option>
<option value="EngineType_FamilyEvolution">EngineType_FamilyEvolution</option>
<option value="EngineType_GasEmissionLevel">EngineType_GasEmissionLevel</option>
<option value="EngineType_Power">EngineType_Power</option>
<option value="EngineType_PowerSupply">EngineType_PowerSupply</option>
<option value="EngineType_Use">EngineType_Use</option>
</select><br />
<textarea id="textareadisplay"></textarea><br />
<input type ="button" id="updatebtn" value="Update values" onclick="addItemsToColumns()" />
在 MSDN 网站上,您可以找到有关 CSOM 的有用信息:
如何:在 SharePoint 2013 中使用 JavaScript 库代码完成基本操作如何:在 SharePoint 2013 中使用 JavaScript 库代码完成基本操作
在第二个链接上,您可以找到有关列表上的CRUD操作的线索
如果要对网站栏的设置执行操作,可以在 MSDN FieldCollection 方法上看到。
JavaScript 也有等效的命名空间。
基本上您可以使用AddFieldAsXml添加站点栏,可以使用方法GetByID(或标题或内部名称)更新/删除并对返回的字段执行操作。