无法使用 rivetJs 显示 JSON 个对象数组的值?

Cannot display values from arrays of JSON objects using rivetJs?

我正在开发单页应用程序,我正在使用 Rivet.js 库将从服务器获取的数据绑定到 DOM 元素,以便更轻松地制作数据模板。

$.getJSON('/auth/user', function(response){
            console.log(response);
            console.log(response.roles[0].name);
            rivets.bind($('#profile'), {user: response});
        });

现在我可以轻松访问 DOM 中的属性,例如 { user.first_name } 或 { user.last_name }

响应包含用户的角色对象数组。当我尝试将其记录到控制台时,例如 console.log(response.roles[0].name);,它工作正常,但是当我在 DOM 中尝试 { user.roles[0].name } 时,它不起作用。我可能做错了什么?

这可能正是您要查找的内容:铆钉绑定数组

How to print an array in rivets.js