我在角度模块中使用$ stateprovider进行路由。有没有其他方法来取代它。模块如下所示
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我在这个阶段遇到了错误。请帮忙解决这个问题。