私はPHPサーバーと私のアプリケーションとの通信にretrofitを使用しています。しかし、私はPHP OOの関数を直接呼び出す必要があります。Retrofit androidを使用して関数phpを直接呼び出す方法
これは私のクラスのPHPです:
class Car extends Obj {
public function __construct($name, $pathImg) {
parent::__construct($name, $pathImg);
}
function get() {
$engine = new Engine(55, 2016, '5.0');
$brand = new Brand('MY BRAND', null);
$car = new Car('MY CAR', null, $brand, $engine);
header('Content-Type: application/json; charset=utf-8');
echo json_encode(array('car' => $car));
}
}
アプリでマイ改造API:
@FormUrlEncoded
@POST("package/ctrl/Car/")
Call<Car> get(@Field("id") int id);
は、それが後付けで関数を直接呼び出すことはできますか?または、別のAPIを使用してそれを行いますか?