剃刀内联 if 语句不起作用?
我在这一行抛出了一个异常,并且无法弄清楚为什么......也许其他人可以发现它
<img src="@{Model.Image != null ? Model.Image.FileName : "";}" width="200px" id="ImagePreview"/>
我得到的异常是:
error CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement
I've got an exception throwing at this line, and can't figure out why...maybe someone else can spot it
<img src="@{Model.Image != null ? Model.Image.FileName : "";}" width="200px" id="ImagePreview"/>
The exception I'm getting is:
error CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要为该表达式使用表达式
(
explicit)
代码块样式:请参阅 gu 的帖子
You need to use the expression
(
explicit)
code block style for that expression:see the gu's post
尝试将其括在括号中而不是大括号中:
Try wrapping it in parenthesis instead of curly brackets: