-2

我想使用 webiopi RESTful api,使用 ajax 显示和更改 gpio 变量。

我有一个可以使用的 php 函数,但我无法退出使用 javascript(ajax?)调用它,或者这不是最佳实践。

api的一个例子。

设置 GPIO 函数
HTTP POST /GPIO/(gpioNumber)/function/("in" or "out" or "pwm")
Returns new setup : "in" or "out" or "pwm"
示例:
设置 GPIO 0 作为输入: HTTP POST /GPIO/0/function/in
将 GPIO 1 设置为输出 : HTTP POST /GPIO/1/function/out

获取 GPIO 值
HTTP GET /GPIO/(gpioNumber)/value
返回 0 或 1
示例:
获取 GPIO 0 值:HTTP GET /GPIO/0/value

和php函数

function WebIOPi($path, $method) {
    $url = 'http://192.168.1.170'.$path;

    // Open Connection
    $ch = curl_init();

    // set the url, user/pass, port
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_USERPWD, 'webiopi:raspberry');
    curl_setopt($ch, CURLOPT_PORT, 8000);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

    // Execute POST
    $result = curl_exec($ch);

    // Close Connection
    curl_close($ch);
    return $result;
}

我假设我也可以以某种方式创建一个数据数组,并创建一个带有按钮的表单来控制引脚。而不是为每个按钮等都这样做。

编辑*

这是我尝试使用建议的方法,仍然无法与休息服务器通信,我哪里出错了。

    <?php //goes here
    function WebIOPi($path, $method) {
        $url = 'http://192.168.0.17'.$path;

    // Open Connection
    $ch = curl_init();

    // set the url, user/pass, port
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_USERPWD, 'webiopi:pass');
    curl_setopt($ch, CURLOPT_PORT, 8000);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

    // Execute POST
    $result = curl_exec($ch);

    // Close Connection
    curl_close($ch);
    return $result;
}
?>

<!DOCTYPE HTML>
<html>
<head>
    <meta charset="utf-8">
    <title>Page Title</title>
    <link rel="stylesheet" href="css/style.css" />
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
</head>
<body>
<script>
$.post('http://192.168.0.17/api.php', 
    { 'method':'POST', 'path':'/GPIO/4/function/out' }, 
    function(data) {
        alert(data);
});
</script>
</body>
</html>
4

1 回答 1

1

用这个创建一个 php 文件,api.php

$path = $_POST['path'];
$method = $_POST['method'];
... whatever validation you want to do ...
return WebIOPi($path, $method);

然后,在您的网站中包含jQuery(这不是必需的,但会使 Ajax 更容易):

//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js

然后像这样创建一个 JavaScript 函数,它将发送一个带有指定数据的请求,然后给你一个带有响应的警报:

$.post('http://whatever/api.php', 
    { 'method':'someMethod', 'path':'somePath' }, 
    function(data) {
        alert(data);
});
于 2013-06-07T14:03:26.707 回答