SP へList.getItemById 方法 (sp.js)
アプリ インスタンスの開始ページを取得します。
**適用対象:**apps for SharePoint | SharePoint Foundation 2013 | SharePoint Server 2013
SP.List.getItemById()
パラメーター
id
[Type]: Numberリスト アイテムの識別子を指定します。
戻り値
[Type]:の SPListItem
例
次の例では、指定した識別子のリスト項目を取得するアプリケーション ページの [入力] ボタンを作成します。
<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
<script type="text/ecmascript" language="ecmascript">
//Get the list item from the Announcements list whose Id is 4. Note that this is the ID of the item in the list, not a reference to its position in the collection.
var itemId = 4;
var targetListItem;
function runCode() {
var clientContext = new SP.ClientContext();
var targetList = clientContext.get_web().get_lists().getByTitle('Announcements');
targetListItem = targetList.getItemById(itemId);
clientContext.load(targetListItem, 'Title');
clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
}
function onQuerySucceeded() {
alert('Request succeeded. \n\nRetrieved Item is: ' + targetListItem.get_item('Title'));
}
function onQueryFailed(sender, args) {
alert('Request failed. \nError: ' + args.get_message() + '\nStackTrace: ' + args.get_stackTrace());
}
</script>
<input id="Button1" type="button" value="Run Code" onclick="runCode()" />
</asp:Content>
他のリソースのエンドポイント
詳細については、リストのリソースを参照してください。
エンドポイント URI 構造
http://<sitecollection>/<site>/_api/web/lists(listid)/getItemById(id)
HTTP 要求
このリソースには、次の HTTP コマンドがサポートしています。
- 投稿
投稿の書式
POST http://<sitecollection>/<site>/_api/web/lists(listid)/getItemById(id)
リソースのパラメーター
- id