只是一个简单的问题,文件上写着
"Cloud Code is easy to use because it's built on the same JavaScript SDK
that powers thousands of apps. The only difference is that this code
runs in the Parse Cloud rather than running on a mobile device."
因此,这是否意味着也有必要使用云代码进行服务器端身份验证,例如登录用户?还是我解释得不对?
我也在为我的移动应用程序创建一个w
下面有一个php类。
<?php
class t extends c{
function __construct() {
parent::__construct();
}
}
class c extends d{
function __construct() {
parent::__construct();
}
}
class d {
function __construct() {
echo "worked";
}
}
new t();
?>
上面的类在我的本地