简体   繁体   中英

error when uploading to apigee

Why do I get this error when I'm uploading to apigee?

Both the operands for AND expression should be logical

Do you have anything more specific, like which operands?

I'd look in Conditions to see if you're trying to evaluate anything that is odd

Is it possible to do an assignment in a comparison?

If your condition has a single boolean term, then a relational operator operators (eg '==') is not needed.

For example:

<Condition>(myBoolean)</Condition>

However if you have two or more terms that comprise your condition, you then need to use a relational operator for each term, as in:

<Condition>(myBoolean == true) and (mySecondBoolean == true)</Condition>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM