标签: python django
我正在构建数据库,但是当我单击数据库上的记录超链接之一时,它将在html上运行:
const a = {name:"haha",address:"here",rate:6}; const b = Object.assign({}, a, { rate: a.rate === undefined ? 3 : a.rate }); console.log(b);
并一次显示所有记录中的数据!我应该怎么做才能分别显示每个记录的特定数据?