單項(xiàng)選擇題<foreach>元素的()屬性配置的是循環(huán)中當(dāng)前的元素。

A.index
B.item
C.collection
D.separator


您可能感興趣的試卷

你可能感興趣的試題

2.單項(xiàng)選擇題拼接SQL語句時(shí),可以用()元素自動刪除SQL語句條件部分的多余的"AND"或"OR"。

A.<if>
B.<choose>
C.<o(jì)therwise>
D.<where>

3.單項(xiàng)選擇題MyBatis的動態(tài)SQL中,相當(dāng)于Java的switch...case...default語句的是()。

A.<choose>、<when>、<o(jì)therwise>元素組合
B.<select>、<where>、<o(jì)therwise>元素組合
C.<choose>、<when>、<trim>元素組合
D.<if>、<when>、<o(jì)therwise>元素組合

4.單項(xiàng)選擇題動態(tài)SQL中,判斷username不是空且不是空串的寫法,正確的是()。

A.<if "username!=null and username!=’’">
B.<if test="username!=null or username!=’’">
C.<if test="username!=null and username!=’’">
D.<trim test="username!=null and username!=’’">