在For循环之后丢失)。不知道出了什么问题。

时间:2013-03-25 18:31:20

标签: javascript xml-parsing

我正在尝试运行此脚本来解析XML文档。 for-loop之后,当我验证js时,我得到了一个丢失的东西。我是编程的新手,不知道我哪里出错了。我最后发布了整个js文件。谢谢!

var meds = [];
for (var i = docMedActivities.size(); i--; i >= 0) {
    var activity = docMedActivities.get(i);
    var material = activity.getConsumable().getManufacturedProduct().getManufacturedMaterial();

meds.push({ 
    name: String(material.getName().getText()),
    displayName: String(material.getCode().getDisplayName()),
    ndc: String(material.getCode().getTranslations().get(0).getCode()),
    doseQty: String(activity.getDoseQuantity().getValue()),
    effectiveDateTime: String(activity.getEffectiveTimes().get(0).getLow().getValue()), // 20120502000000+0000
    code: String(material.getCode().getCode())
});
}

以下整个js文件:

// Load the CCD Document
var doc = org.openhealthtools.mdht.uml.cda.util.CDAUtil.load(new java.io.ByteArrayInputStream(messageObject.getRawData().getBytes("UTF-8")));

// Get CCD Document Sections to be parsed
var docPatientRole = doc.getRecordTargets().get(0).getPatientRole();
var docPatient = docPatientRole.getPatient();
var docPatientName = docPatient.getNames().get(0);
var docPatientAddress = docPatientRole.getAddrs().get(0);
var docMedSection = doc.getMedicationsSection();
var docMedActivities = docMedSection.getMedicationActivities();

// Patient Identity
var patient = {
firstName:  String(docPatientName.getGivens().get(0).getText()),
lastName: String(docPatientName.getFamilies().get(0).getText()),
genderCode: String(docPatient.getAdministrativeGenderCode().getCode()),
dateOfBirth: String(docPatient.getBirthTime().getValue()) // YYYYMMDD
};

// Patient Address
var address = {
addressCity: String(docPatientAddress.getCities().get(0).getText()),
addressState: String(docPatientAddress.getStates().get(0).getText()),
addressPostalCode: String(docPatientAddress.getPostalCodes().get(0).getText())
};

// Patient Medication Activities
var meds = [];
for (var i = docMedActivities.size(); i--; i >= 0) {
var activity = docMedActivities.get(i);
var material =   activity.getConsumable().getManufacturedProduct().getManufacturedMaterial();

meds.push({
    name: String(material.getName().getText()),
    displayName: String(material.getCode().getDisplayName()),
    ndc: String(material.getCode().getTranslations().get(0).getCode()),
    doseQty: String(activity.getDoseQuantity().getValue()),
    effectiveDateTime: String(activity.getEffectiveTimes().get(0).getLow().getValue()), // 20120502000000+0000
    code: String(material.getCode().getCode())
});
}

// Populate Channel Map, use JSON so logs are readable
channelMap.put('patient', JSON.stringify(patient, null, 2));
channelMap.put('address', JSON.stringify(address, null, 2));
channelMap.put(&apos;meds&apos;, JSON.stringify(meds, null, 2));</script>
      <type>JavaScript</type>
      <data class="map">
        <entry>
          <string>Script</string>
          <string>// Load the CCD Document
var doc = org.openhealthtools.mdht.uml.cda.util.CDAUtil.load(new    java.io.ByteArrayInputStream(messageObject.getRawData().getBytes(&quot;UTF-8&quot;)));

// Get CCD Document Sections to be parsed
var docPatientRole = doc.getRecordTargets().get(0).getPatientRole();
var docPatient = docPatientRole.getPatient();
var docPatientName = docPatient.getNames().get(0);
var docPatientAddress = docPatientRole.getAddrs().get(0);
var docMedSection = doc.getMedicationsSection();
var docMedActivities = docMedSection.getMedicationActivities();

// Patient Identity
var patient = {
firstName:  String(docPatientName.getGivens().get(0).getText()),
lastName: String(docPatientName.getFamilies().get(0).getText()),
genderCode: String(docPatient.getAdministrativeGenderCode().getCode()),
dateOfBirth: String(docPatient.getBirthTime().getValue()) // YYYYMMDD
};

// Patient Address
var address = {
addressCity: String(docPatientAddress.getCities().get(0).getText()),
addressState: String(docPatientAddress.getStates().get(0).getText()),
addressPostalCode: String(docPatientAddress.getPostalCodes().get(0).getText())
};

// Patient Medication Activities
var meds = [];
for (var i = docMedActivities.size(); i--; i &gt;= 0) {
var activity = docMedActivities.get(i);
var material =   activity.getConsumable().getManufacturedProduct().getManufacturedMaterial();

meds.push({
    name: String(material.getName().getText()),
    displayName: String(material.getCode().getDisplayName()),
    ndc: String(material.getCode().getTranslations().get(0).getCode()),
    doseQty: String(activity.getDoseQuantity().getValue()),
    effectiveDateTime: String(activity.getEffectiveTimes().get(0).getLow().getValue()), // 20120502000000+0000
    code: String(material.getCode().getCode())
});
}

// Populate Channel Map, use JSON so logs are readable
channelMap.put(&apos;patient&apos;, JSON.stringify(patient, null, 2));
channelMap.put(&apos;address&apos;, JSON.stringify(address, null, 2));
channelMap.put(&apos;meds&apos;, JSON.stringify(meds, null, 2));

3 个答案:

答案 0 :(得分:3)

在JS文件中,您需要编写>=而不是&gt;=;当JS嵌入(X)HTML PCDATA中时,后者才有意义。

(错误消息的错误措辞的原因是验证器将gt解释为标识符,使用the bitwise-AND operatori & gt解释为表达式。所以当它看到时分号,它认为for - 循环标题应该结束。)


编辑添加:此外,虽然您的for循环在您进行此更改后仍然有效,但这仅仅是由于一系列奇怪的怪癖和巧合。这样:

for (var i = docMedActivities.size(); i--; i >= 0) {
    ...
}

意味着:

var i = docMedActivities.size();
while (i--) {      // note the post-increment: i-- evaluates to i's old value
    ...
    i >= 0;        // note that this expression has no side-effects
}

相当于:

var i = docMedActivities.size();
while (i != 0) {
    i--;
    ...
}
i--;

碰巧做你想做的事。所以你的代码恰好正常工作,但不是因为看起来像那样,并且任何未来的微小变化都会以极其混乱的方式打破它。

你真正想写的是:

for (var i = docMedActivities.size() - 1; i >= 0; i--) {
    ...
}

i >= 0i--之前来到,在初始化表达式中有- 1

答案 1 :(得分:1)

在脚本中,您不需要转义HTML实体。 JS解析器在你的for语句中检测到3个分号,这个分号太多而无法生效 - 需要一个右括号。

此外,您已将条件与更新代码交换。将其更改为

for (var i = docMedActivities.size(); i>=0; i--)

答案 2 :(得分:0)

问题在于循环的这一部分:i &gt;= 0

在第三个逗号之后,for语句通常结束,这就是期望/需要右括号的原因。将&gt;更改为>&gt;表示“大于”,建议您从某处复制此代码,但可能需要在其他地方进行更改。

另外,我很确定你的for语句的顺序应该是:

for (var i = docMedActivities.size(); i >= 0; i--) {

请注意,i--应该是语句的第三部分,'大于'部分应该是第二部分。最后一部分之后的逗号也不是必需的。

由于您刚接触编码,我建议至少查看this page on for-loops。但是,一般来看看JavaScript的一些介绍会是一个好主意。

希望这有帮助。