sharepoint 2010通过api调用获得选择字段的价值

时间:2015-05-16 05:21:08

标签: rest sharepoint sharepoint-2010

我有一个共享点列表AutoCompleteTextView,我有一个存储其类型

的列

列名为ImageList

选项是“profile pic”,“thumbnail”

我想获取此字段的这些选择值

我尝试使用

访问它
ImageType

但它没有包含选择值!

我怎样才能得到它们?

1 个答案:

答案 0 :(得分:2)

查询:

http://myintranet:2010/sites/ImagesGallery/_vti_bin/listdata.svc/ImageList?$expand=ImageType

仅返回List资源的列表项值。

为了检索字段资源本身,必须指定不同的端点,特别是:

http://myintranet:2010/sites/ImagesGallery/_vti_bin/listdata.svc/ImageListImageType
  

假设列表名称为ImageList且字段名称为   ImageType

示例

$.getJSON(endpointUrl)
.done(function(data)
{
    //print field choice options
    data.d.results.forEach(function(item){ 
       console.log(item.Value);
    });

})
.fail(function(error){
    console.log(JSON.stringify(error));
});