gpt4 book ai didi

c# - 如何在 src 标签中连接两个字符串?

转载 作者:太空狗 更新时间:2023-10-29 15:32:45 24 4
gpt4 key购买 nike

这里我想在 <img> 中连接两个字符串标签。如何做到这一点??

<img src=" "/partners" + @item.AdPath" alt="" id="adimg" title="@item.AdName"  width:"50px" height="50px"/>

有什么建议吗?

最佳答案

你应该能够做到这一点:

<img src="/partners+@(item.AdPath)" alt="" id="adimg"
title="@item.AdName" width:"50px" height="50px"/>

Razor 引擎会将 @item.AdPath 替换为实际值,为您提供 src="/partners+[value]"

由于 Razor 表达式是唯一被解析的内容,因此您不必尝试将字符串连接逻辑添加到标记中 - 只需将 Razor 表达式放入您希望值出现的位置即可。

编辑:或者,如果您不想要加号(您的评论中不清楚):

<img src="/partners@(item.AdPath)" alt="" id="adimg"
title="@item.AdName" width:"50px" height="50px"/>

或者,您可以尝试使用 String.Format:

<img src="@String.Format("/partners{0}", item.AdPath)" alt="" id="adimg"
title="@item.AdName" width:"50px" height="50px"/>

关于c# - 如何在 <img> src 标签中连接两个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16081150/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com