admin管理员组文章数量:1340299
I get a Syntax error
on each ma (,
) and on the last bracket ()
) in the following code:
<script type="text/javascript">
Filters.priceRangeInit(@Model.Min, @Model.Max, @Model.From, @Model.To);
</script>
The javascript function is in another file and looks like this:
Filters = {
priceRangeInit: function (min, max, from, to) {
$('#price-range-slider').slider({
min: min,
max: max,
step: 50,
values: [from, to],
slide: function (event, ui) {
$('#left-price-range-amount').val(ui.values[0]);
$('#right-price-range-amount').val(ui.values[1]);
}
});
}
};
The model looks like this:
public class PriceRangeFilterModel
{
public int Min { get; set; }
public int Max { get; set; }
public int From { get; set; }
public int To { get; set; }
}
I use using Visual Studio 2012, ASP.NET MVC 3 and Razor and everything works fine in the browser, but I want to get rid of the 4 syntax errors I get in the IDE.
If I pass the parameters as strings
I don't get errors anymore, but then I'd have to cast each one back to int
to make the slider work:
<script type="text/javascript">
Filters.priceRangeInit('@Model.Min', '@Model.Max', '@Model.From', '@Model.To');
</script>
Do you have any other ideas about how to write this call so that I don't get syntax errors?
I get a Syntax error
on each ma (,
) and on the last bracket ()
) in the following code:
<script type="text/javascript">
Filters.priceRangeInit(@Model.Min, @Model.Max, @Model.From, @Model.To);
</script>
The javascript function is in another file and looks like this:
Filters = {
priceRangeInit: function (min, max, from, to) {
$('#price-range-slider').slider({
min: min,
max: max,
step: 50,
values: [from, to],
slide: function (event, ui) {
$('#left-price-range-amount').val(ui.values[0]);
$('#right-price-range-amount').val(ui.values[1]);
}
});
}
};
The model looks like this:
public class PriceRangeFilterModel
{
public int Min { get; set; }
public int Max { get; set; }
public int From { get; set; }
public int To { get; set; }
}
I use using Visual Studio 2012, ASP.NET MVC 3 and Razor and everything works fine in the browser, but I want to get rid of the 4 syntax errors I get in the IDE.
If I pass the parameters as strings
I don't get errors anymore, but then I'd have to cast each one back to int
to make the slider work:
<script type="text/javascript">
Filters.priceRangeInit('@Model.Min', '@Model.Max', '@Model.From', '@Model.To');
</script>
Do you have any other ideas about how to write this call so that I don't get syntax errors?
Share Improve this question asked Sep 23, 2012 at 17:23 david.sdavid.s 11.4k6 gold badges52 silver badges83 bronze badges 1- 2 Your code looks fine and because it works in the browser you should not care about the syntax error in VS. The visual studio intelisense - especially in razor - is not perfect. So just ignore the errors. – nemesv Commented Sep 23, 2012 at 18:29
2 Answers
Reset to default 14Razor Intellisense is just broken in Visual Studio. Your code is perfectly valid and you should ignore those warnings and hope that Microsoft will fix it in future versions.
To suppress the syntax errors, either wrap string values in quotes or wrap numbers in parseInt() as follows:
var myInt = parseInt('@Model.MyInt');
var myStr = '@Model.MyString';
Or, for your example:
Filters.priceRangeInit(parseInt('@Model.Min'), parseInt('@Model.Max'), parseInt('@Model.From'), parseInt('@Model.To'));
The roundtrip conversion is annoying but takes no time, really.
本文标签:
版权声明:本文标题:asp.net mvc - Syntax error in Razor view when passing model properties as parameters to javascript function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631112a2513123.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论