Vue模板Mustage标签中的动态参数

时间:2019-04-29 16:09:47

标签: javascript vue.js

数据库中有一些名为“ h_01”,“ h_02” ...“ h_23”的列。 在vue模板中,我尝试使用此构造:

<td v-for="hour in hours">{{'item.h_'+hour}}</td>

但是结果是,我在表单元格中仅看到“ item.h_1”,而从DB中看不到实际值。

我做错了什么?

这是FF屏幕:

enter image description here

1 个答案:

答案 0 :(得分:1)

更改为

typedef Eigen::Matrix< float, 3, 1> Vec3f;

Eigen::SparseMatrix< Vec3f > lA( m, n);
lA.reserve( Eigen::VectorXi::Constant(m, 4) );

for( unsigned int i = 0; i < m; i++)
{

   Vec3f lVec( 0.0, 0.0, 1.0);

   lA.coeffRef(i, i) = lVec; // got the error here!
}