如何使用 foreach 循环构建 json 对象并在 razor 中调用 jquery 函数
我想获取一个对象列表并迭代该列表并构建一个 json 对象并在 razor 的 foreach 循环中调用 jquery 函数。
@foreach (var item in Model.CoordinatesObj) {
var pinpoint = { "top": item.Top,
"left": item.Left,
"width": item.Width,
"height": item.Height
};
$("#toPinpoint").mapImage.addPinpointExt(pinpoint);
}
我希望能够执行此操作,以便它动态构建此 pinpoint 对象并用于传递我的 addPinpointExt 函数。 Model.CoordinatesObj 是对象列表。这甚至可能吗?如果不是,最好的方法是什么?
I want to take a list of objects and iterate through the list and build a json object and call a jquery function in a foreach loop of razor.
@foreach (var item in Model.CoordinatesObj) {
var pinpoint = { "top": item.Top,
"left": item.Left,
"width": item.Width,
"height": item.Height
};
$("#toPinpoint").mapImage.addPinpointExt(pinpoint);
}
I want to be able to do this so it dynamically builds this pinpoint object and is used to pass through my addPinpointExt function. the Model.CoordinatesObj is a List of objects. Is this even possible this way? If not what is the best way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会将 for 循环放入 MVC 操作中,然后使用 $.ajax() 调用它,
使用 Razor 生成 HTML。
I would put the for loop in an MVC action and then call it using $.ajax()
use Razor for generating HTML.
为您创建一个数组,保存每个 html 元素的值(示例中的“p”段落)
或者您可以使用each() Jquery 函数进行迭代。
Creates an array for you holding value of every html element ('p' paragraph in example)
Alternatively you can use each() Jquery function to iterate.
如果您想将服务器端代码与纯文本(在您的情况下为 Javascript/JSON)混合,您可以将纯文本包装在
标记中:请注意,您还缺少
@
在服务器端变量前面。Phil Haack 在 Razor 语法。
If you want to mix server-side code with plain text (Javascript/JSON in your case), you can wrap the plain text in a
<text>
tag:Notice you were also missing the
@
in front of the server-side variables.Phil Haack has a nice reference page on Razor syntax.