有什么方法可以将SharePoint列表与网站/ Web应用程序集成以执行读取/写入操作?

时间:2019-07-10 06:03:51

标签: javascript php jquery html ajax

我正在创建一个PHP Web应用程序/站点。我需要在共享点列表上存储一些数据,并检索它们以显示在Web应用程序/站点上。 有什么办法

1 个答案:

答案 0 :(得分:0)

您可以检查此API

用法:

use Thybag\SharePointAPI;
$sp = new SharePointAPI('<username>', '<password>', '<path_to_WSDL>');

从列表中阅读

$sp->read('<list_name>');

查询列表:

$sp->query('list of pets')->where('type','=','dog')->and_where('age','<','5')->sort('age','ASC')->get();

添加到列表:

$sp->write('<list_name>', array('forename'=>'Bob','surname' =>'Smith', 'age'=>40, 'phone'=>'(00000) 000000' ));

还有许多其他选项,您可以在上面的链接中查看。