我试图通过@ Url.Action为提交按钮传递两个参数。但是,值未传递。
我有索引视图,下拉字段和保存按钮。我希望用户能够做的是选择下拉值并保存值。但是,无论我如何访问我的函数,值都为null。我试过传入参数并绑定数据。
目前我的观点看起来像 -
public class PossitiveArray
{
public static void main(String[] args) {
int[] numbers = {2,-1,5,-4,3};
System.out.print(numbers);
}
public static int[] getPositiveNumbers(int[] numbers)
{
for (int n : numbers)
{
if(n>0)
{
int [] nums = numbers;
}
}
return nums;
}
}
在我的控制器中我有
IMaker = interface
function Make(const Int: Integer): IInterface; overload;
function Make(const Str: String): IInterface; overload;
end;