• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript request-promise-json.get函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中request-promise-json.get函数的典型用法代码示例。如果您正苦于以下问题:TypeScript get函数的具体用法?TypeScript get怎么用?TypeScript get使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了get函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: it

        it("check slave", function (done) {

            rpj.get(CouchAuth.my('_users/org.couchdb.user:' + slave.username)).then((d) => {

                expect(d).to.be.ok;

                expect(d).to.have.property('name').that.eq(slave.username);

                expect(d).to.have.property('roles').that.is.an('array');
                expect(d.roles[0]).to.be.eq('slave');


                expect(d).to.have.property('app').that.is.an('object');
                expect(d.app).to.have.property('db').that.is.a('string');
                expect(d.app).to.have.property('user').that.is.a('string');

                expect(d).to.have.property('dbtype').that.is.a('string').that.eq('userslave');

                expect(d).to.have.property('type').that.is.a('string').that.eq('user');

                done();
            }).catch((err) => {
                done(Error(err));
            })



        })
开发者ID:dottgonzo,项目名称:couch-autho,代码行数:28,代码来源:main.ts


示例2: Error

    return new Promise<IUserDB>(function (resolve, reject) {
        rpj.get(internal_couchdb.my('_users/org.couchdb.user:' + username)).then(function (doc) {
            resolve(doc)
        }).catch(function (err) {
            if (err.statusCode != 404) {
                throw Error("ERROR!!!" + err)
            }

            reject(err)
        })
    })
开发者ID:dottgonzo,项目名称:couch-autho,代码行数:11,代码来源:index.ts


示例3: expect

            CouchAuth.register({ username: user0.user, password: user0.password, email: user0.email, app_id: 'testapp' }).then(function () {


                rpj.get(CouchAuth.my('_users/org.couchdb.user:' + user0.user)).then(function (d) {

                    expect(d).to.be.ok;
                    expect(d).to.have.property('name').that.eq(user0.user);
                    expect(d).to.have.property('email').that.eq(user0.email);

                    expect(d).to.have.property('roles').that.is.an('array');
                    expect(d.roles[0]).to.be.eq('user');

                    expect(d).to.have.property('type').that.eq('user');

                    expect(d).to.have.property('db').that.is.an('array');

                    expect(d.db[0]).to.have.property('app_id').that.is.a('string').that.eq('testapp');
                    expect(d.db[0]).to.have.property('dbname').that.is.a('string');
                    expect(d.db[0]).to.have.property('dbtype').that.is.a('string').that.eq('mine');

                    expect(d.db[0]).to.have.property('roles').that.is.an('array');
                    expect(d.db[0].roles[0]).to.be.eq('owner');

                    expect(d.db[0]).to.have.property('slave').that.is.an('object');
                    expect(d.db[0].slave).to.have.property('username').that.is.a('string');
                    expect(d.db[0].slave).to.have.property('password').that.is.a('string');

                    slave = d.db[0].slave;
                    done();



                }).catch((err) => {
                    done(Error(err));
                })
            }).catch((err) => {
开发者ID:dottgonzo,项目名称:couch-autho,代码行数:36,代码来源:main.ts


示例4: constructor

    constructor(rootaccessdb: IClassConf) {
        super(rootaccessdb)

        let that = this;

        function addAdminRole() {
            that.addAppRole(that.user, 'main').then(() => {
                console.log("created!")
                return true
            }).catch((err) => {
                console.log("errRRR " + err)
            })
        }




        rpj.get(that.my('app_main')).then(function () {


            getuserdb(that, that.user).then((u) => {

                if (u.roles.indexOf('app_main') != -1) {
                    addAdminRole()
                } else {
                    console.log("created!")
                    return true
                }

            }).catch((err) => {

                that.createUser(that.user, that.password, '').then(() => {


                    addAdminRole()


                }).catch((err) => {
                    console.error("err " + err)
                })

            })


        }).catch(function (err) {


            that.createapp('main').then(() => {

                getuserdb(that, that.user).then((u) => {

                    if (u.roles.indexOf('app_main') != -1) {
                        addAdminRole()
                    } else {
                        console.log("created!")
                        return true
                    }

                }).catch((err) => {

                    that.createUser(that.user, that.password, '').then(() => {

                        addAdminRole()


                    }).catch((err) => {
                        console.error("err " + err)
                    })

                })



            }).catch((err) => {


                console.error("err " + err)
            })
        })


    }
开发者ID:dottgonzo,项目名称:couch-autho,代码行数:82,代码来源:index.ts



注:本文中的request-promise-json.get函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript request-promise-json.put函数代码示例发布时间:2022-05-25
下一篇:
TypeScript request-promise.post函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap