到目前为止,我能够对列表执行 CRUD 操作,我想知道是否可以在站点列上执行此操作,我尝试在网络上找到它,但我真的一无所获,我决定放弃一个问题在这里只是为了了解是否可能,如果有可能,请任何人提供一些资源以便我可以学习?提前致谢。
问问题
372 次
2 回答
1
这正是您需要的,几周前我也为工作完成了它。
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()" />
于 2015-05-07T08:00:15.837 回答
0
在 MSDN 网站上,您可以找到有关 CSOM 的有用信息:
如何:使用 SharePoint 2013 中的 JavaScript 库代码 完成基本操作 如何:使用 SharePoint 2013 中的 JavaScript 库代码完成基本操作
在第二个链接上,您可以找到有关列表上 CRUD 操作的线索
如果要对 Site Column 的设置执行操作,可以在 MSDN FieldCollection methods上查看。
javascript 也有等效的命名空间。
基本上您可以使用AddFieldAsXml添加站点列,您可以使用方法GetByID(或 Title 或 InternalName)更新/删除并对返回的Field执行操作。
于 2015-04-28T09:37:19.883 回答