RPC(Remote Procedure Call)—远程过程调用,它是一种通过网络从远程计算机程序上请求服务,而不需要了解底层网络技术的协议。
运行时,一次客户机对服务器的RPC调用,其内部操作大致有如下十步:
文件结构
zrj@zrj:~/www/zhangrenjie_test/test/rpc$ tree
├── Client.php
└── Provider
├── index.php
└── Services
└── UserService.php
class Client
{
private $serviceUrl;
private $serviceName;
private $rpcConfig = [
‘UserService‘ => ‘http://127.0.0.1:8081‘,
];
public function __construct($serviceName)
{
if (array_key_exists($serviceName, $this->rpcConfig)) {
$this->serviceUrl = $this->rpcConfig[$serviceName];
$this->serviceName = $serviceName;
}
}
// __call() is triggered when invoking inaccessible methods in an object context.
//调用不可访问的方法
public function __call($actionName, $arguments)
{
$content = json_encode($arguments);
$options[‘http‘] = [
‘timeout‘ => 5,
‘method‘ => ‘POST‘,
‘header‘ => ‘Content-type:applicaion/x-www-form-urlencoode‘,
‘content‘ => $content,
];
//创建资源流上下文
$context = stream_context_create($options);
$get = [
‘service_name‘ => $this->serviceName,
‘action_name‘ => $actionName
];
$serviceUrl = $this->serviceUrl . ‘?‘ . http_build_query($get);
$result = file_get_contents($serviceUrl, false, $context);
return json_decode($result, true);
}
}
$userService = new Client(‘UserService‘);
$result=$userService->getUserInfo(random_int(1,10));
var_dump($result);
步骤:
服务提供者(Service Provider)的实现
Provider目录为演示的服务提供者的总目录,index.php为管理调度服务的入口。
Provider\Services目录为所有服务类目录。
服务调度入口:index.php
namespace rpc\Provider;
require_once ‘./Services/UserService.php‘;
use rpc\Provider\Services\{
UserService
};
$serviceName = trim($_GET[‘service_name‘]);
$serviceAction = trim($_GET[‘action_name‘]);
$argv = file_get_contents("php://input");
if (empty($serviceName) || empty($serviceAction)) die(‘paramas is missing‘);
if (!empty($argv)) {
$argv = json_decode($argv, true);
}
$result = call_user_func_array([$serviceName, $serviceAction], $argv);
echo json_encode($result);
User服务:UserService.php
namespace rpc\Provider\Services;
class UserService
{
public static function getUserInfo(int $uid): array
{
return [
‘id‘ => $uid,
‘user_name‘ => ‘jack_‘ . $uid,
];
}
}
开启服务:对外提供服务远程调用地址(http://127.0.0.1:8081)。
#这里我们利用PHP自带的cli模式开启服务
php -S 127.0.0.1:8080 -t /www/zhangrenjie_test/test/rpc/Provider
至此,大功告成。
git branch -r #查看远程所有分支;git branch #查看本地所有分支;git branch -a #查看本地及远程的所有分支,git fetch #将某个远程主机的更新,全部取回本地:git branch -a #查看远程分支
初始化;查看当前仓库状态;将项目的文件添加到仓库中;将add的文件commit到仓库;将本地的仓库关联到远程仓库上;代码合并 拉取;代码上传到远程仓库
React 是一个专注的组件库。因此,它对如何请求远程数据没有什么建议。如果要通过 HTTP 请求数据并将其发送到 Web API ,可以考虑下面四种方法。
希望可以保留现在这个远程仓库,然后清空里面的文件和文件夹,实现过程总结为:找个空文件夹把项目clone下来,删除内容,然后push
想象有这样一个场景:A 团队开发了一套组件库,B 和 C 团队都在各自的业务项目中使用了该组件库。现在 A 团队需要对某个组件进行更新(比如修改颜色),按照以往的做法
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!