我还有其他方法可以替换angular.js模块中的$ stateprovider

时间:2016-10-03 10:47:37

标签: angularjs node.js

我在角度模块中使用$ stateprovider进行路由。有没有其他方法来取代它。模块如下所示

login.module.js

const r = require('rethinkdb');
const config = require('../config/rethinkdb');

const connection = r.connect(config);
module.exports.getAlerts = async function(time) {
//                         ^^^^^^^^^^^^^^ two keywords, nothing between
    const conn = await connection;
//               ^^^^^^^^^^^^^^^^ don't export functions asynchronously, just wait inside it
    const cursor = await r.table('track').filter({createdAt:time}).run(conn);
    return await cursor.toArray();
};

使用此登录功能正常工作。但是当我尝试在父页面重置密码时,url栏会显示用户名和密码。链接是这样的 Login while Resetting password我在这个阶段遇到了错误。请帮忙解决这个问题。

0 个答案:

没有答案