我有一个包含 STATUS 和 Reason 列的目标列表
我用了
<script language="ecmascript" type="text/ecmascript">
ExecuteOrDelayUntilScriptLoaded(ViewItem, "sp.js");
function ViewItem()
{
var context = new SP.ClientContext.get_current();
var web = context.get_web();
var list = web.get_lists().getByTitle('Objectives');
var query = SP.CamlQuery.createAllItemsQuery();
allItems = list.getItems(query);
context.load(allItems, 'Include(STATUS)');
context.executeQueryAsync(
Function.createDelegate(this, this.success), Function.createDelegate
(this, this.failed));
}
</script>
我只需要获取状态列。我需要 camlquery,但我不知道在哪里写。