我担心从 javascript 中的 sharepoint 2010 列表中获取列表项的更好选择
有 2 个可用选项
1) sharepoint 2010 客户端对象模型
http://msdn.microsoft.com/en-us/library/hh185011.aspx
2) jquery spservices
http://spservices.codeplex.com/documentation
但我无法理解在安全、安保和稳定性/低维护方面哪个更好
而且我对sharepoint2010 JSOM有疑问是它有一个方法
var oList = clientContext.get_web().get_lists().getByTitle('Announcements');
但没有 getListByUrl 的任何方法
使用 getListByTitle 是否安全(如在共享点对象模型中,通常首选使用 GetListByUrl 而不是 GetListByTitle)?
请分享你的经验
谢谢