Upgrade to Pro — share decks privately, control downloads, hide ads and more …

サーバサイドエンジニアにこそ使って欲しいBaaS

 サーバサイドエンジニアにこそ使って欲しいBaaS

We Are JavaScripters! @3rdでの発表資料です。

https://wajs.connpass.com/event/48659/

More Decks by ニフティクラウド mobile backend

Other Decks in Technology

Transcript

  1. Copyright @ NIFTY Corporation All Rights ࣗݾ঺հ  !NPPOHJGU GCNFNPPOHJGUGBO

    த௡઒ಞ࢘ גࣜձࣾ.00/(*'5୅දऔక໾ χϑςΟΫϥ΢υNPCJMFCBDLFOE ɹɹɹɹɹɹɹɹɹɹΤϰΝϯδΣϦετ ೥݄ΑΓΦʔϓϯιʔεɾιϑτ΢ΣΞΛຖ ೔঺հ͢Δϒϩά.00/(*'5ΛӡӦɻ IUUQXXXNPPOHJGUKQ
  2. ೝূ var user = new ncmb.User(); user .set("userName", req.body.userName) .set("password",

    req.body.password) .set("acl", acl) .signUpByAccount() .then(function(user) { res.status(201).json(user); }) .catch(function(err) { res.status(401).json(err); })
  3. σʔλૢ࡞ var post = new ncmb.DataStore("Post"); var acl = new

    ncmb.Acl; acl.setPublicReadAccess(true); post.set('title', req.body.title); .set('body', req.body.body); .set('acl', acl); .save() .then(function(obj) { res.status(201).json(obj); }) .catch(function(err) { res.status(401).json(err); })