我有一个共享点列表AutoCompleteTextView
,我有一个存储其类型
列名为ImageList
选项是“profile pic”,“thumbnail”等
我想获取此字段的这些选择值
我尝试使用
访问它ImageType
但它没有包含选择值!
我怎样才能得到它们?
答案 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));
});