如何在@ Url.Action参数

时间:2018-10-06 11:05:09

标签: javascript json html-helper asp.net-mvc-views

Url.Action参数名称作为函数参数。现在我将actionNameParameter用作函数参数,现在我如何在url上写此参数:'@ Url.Action(actionNameParameter)' 我尝试了此代码,但是它不起作用。但是我写像url:'@ Url.Action(“ StringactionName”)'然后它起作用了。但是我需要使用函数参数作为@ Url.Action(actionNameParameter)

function example(actionNameParameter) {
        $.ajax({
            type: 'POST',
            url: '@Url.Action(actionNameParameter)'
        });
    }

1 个答案:

答案 0 :(得分:0)

int rgb = img.getRGB(250, 10);
Color color = new Color(rgb);

// get colors (e.g. red)
int red = color.getRed();
System.out.println(red);

// retrieve alpha value via bitshifting
int alpha = (rgb & 0xff000000) >>> 24
System.out.println(alpha);