2015-07-04 51 views
0

我正在學習新的ParseReact框架,我想知道如何創建一個用戶對象。如何創建一個新用戶使用ParseReact框架

這是我有:

ParseReact.Mutation.Create('User', { 
    username: 'johndoe', 
    password: 'test', 
    email: '[email protected]', 
    emailVerified: 'false' 
}).dispatch(); 

我得到「POST https://api.parse.com/1/classes/User 400(錯誤請求)」錯誤信息

參考:https://github.com/ParsePlatform/ParseReact/blob/master/docs/DataMutations.md

回答

0

使用 '_user' 而不是'用戶'。

ParseReact.Mutation.Create('_User', { 
    username: 'johndoe', 
    password: 'test', 
    email: '[email protected]', 
    emailVerified: 'false' 
    }).dispatch() 
    .then(() => { 
    console.log('ok'); 
    }) 
    .fail((error) => { 
    console.log(error); 
    }); 
相關問題