在配置用户名和密码以允许用户访问我的 Parse Server 后,我如何 运行 任何 JS 函数?
How can I run any JS function after config the username and password to allow user access my Parse Server?
首先,抱歉我的英语不好。我正在使用 Parse 服务器,为了让我的队友访问我的本地服务器,我这样配置服务器
{
"apps": [
{
"serverURL": "http://10.30.176.147:1337/parse",
"appId": "MyFirstApp",
"masterKey": "myMasterKey",
"appName": "MyApplication"
}
],
"users":
[
{
"user":"admin",
"pass":"pass"
}
]
}
但在那之后,我无法执行任何方法。示例:
Parse.serverURL = 'http://10.30.176.147:1337/parse';
var user = new Parse.User();
user.set("username", "alex@gmail.com.vn");
user.set("password", "123456");
user.set("email", "alex@gmail.com.vn");
user.set("foo", "bar");
user.set("name", "Alex Ho");
user.set("gender", "female");
user.signUp().then(function success(){
console.log("Signed up", user);
}, function error(err){
console.error(err);
});
它returns这样的错误信息:
[对象对象] {
代码:100,
消息:“XMLHttpRequest 失败:”无法连接到 Parse API””
}
我相信你错过了初始化 SDK:
Parse.initialize("MyFirstApp", null, "myMasterKey");
首先,抱歉我的英语不好。我正在使用 Parse 服务器,为了让我的队友访问我的本地服务器,我这样配置服务器
{
"apps": [
{
"serverURL": "http://10.30.176.147:1337/parse",
"appId": "MyFirstApp",
"masterKey": "myMasterKey",
"appName": "MyApplication"
}
],
"users":
[
{
"user":"admin",
"pass":"pass"
}
]
}
但在那之后,我无法执行任何方法。示例:
Parse.serverURL = 'http://10.30.176.147:1337/parse';
var user = new Parse.User();
user.set("username", "alex@gmail.com.vn");
user.set("password", "123456");
user.set("email", "alex@gmail.com.vn");
user.set("foo", "bar");
user.set("name", "Alex Ho");
user.set("gender", "female");
user.signUp().then(function success(){
console.log("Signed up", user);
}, function error(err){
console.error(err);
});
它returns这样的错误信息:
[对象对象] { 代码:100, 消息:“XMLHttpRequest 失败:”无法连接到 Parse API”” }
我相信你错过了初始化 SDK:
Parse.initialize("MyFirstApp", null, "myMasterKey");