我尝试将我的 JS 变量传递给剃刀,我的脚本片段:
select: function (event, ui) {
var docID = ui.item.DoctorCode;
@{
string org_code = _unitOfWork.Doctors.GetById("").OrganizationCode;
}
doctorOrgLabel.text('@org_code');
}
在GetById()
方法中我想传递 JS 变量docID
。我会很感激任何帮助!