我试图在Angular 5项目中使用一个具有true / false值的下拉列表,所以我使用了这段代码,与我在这里看到的帖子相对应。
typedef Eigen::LLT<Eigen::MatrixXd> Chol;
Chol chol(P); // Can be reused if x changes but P stays the same
// Handle non positive definite covariance somehow:
if(chol.info()!=Eigen::Success) throw "decomposition failed!";
const Chol::Traits::MatrixL& L = chol.matrixL();
double quadform = (L.solve(x)).squaredNorm();
该类中的<select id="doorFacingCamera" name="doorFacingCamera" class="form-control"
[(ngModel)]="lab.doorFacingCamera" [disabled]="!userCanEdit">
<option [ngValue]="null">-- Select --</option>
<option [ngValue]="true">Yes</option>
<option [ngValue]="false">No</option>
</select>
属性被声明为lab.doorFacingCamera
。但是当我像这样将对象转储到JSON时:
boolean
我的意思是“是”。我在这里做什么错了?