duanrong5167 2016-02-02 14:28
浏览 130
已采纳

在$ .post - JQuery中创建动态变量赋值

Could i use dynamic variable inside my $.post JQuery/Ajax code? I would like to know where i am making mistakes or i am misunderstood the useage of $.post of JQuery.

I have dynamically created variables and value assigned to it from text-fields. Now i want to use those variables inside $.post of JQuery.

Code Below:

The part that's working fine:

var boxFields = ["customerId","customerName","customerContact","customerEmail"];
var boxVar = [];

for(var x=0;x<4;x++)
{
    boxVar[x] = $("#" + boxFields[x]).val();
}

alert(boxVar[1]); //Just random call to check it works.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<input type="text" id="customerId" value="12345"/>
<br>
<br>
<input type="text" id="customerName" value="John Doe"/>
<br>
<br>
<input type="text" id="customerContact" value="XXXXXXXXXX"/>
<br>
<br>
<input type="text" id="customerEmail" value="xxxxxx@xxx.com"/>

Now i have dynamically generated variables (check above hidden snippet for that). So to use those in $.post.

Update:

Sorry, for missing the actual part

My Problem/Question: Could i use for loop to create dynamic objects inside $.post.

Whole Code:

var boxFields = ["customerId","customerName","customerContact","customerEmail"];
var boxVar = [];

for(var x=0;x<4;x++)
{
    boxVar[x] = $("#" + boxFields[x]).val();
}

$.post("url.php",
{
  requestType: "updateRow",
  
  for(var y=0;y<4;y++)
  {
    boxFields[y]: boxVar[y] 
    if(y!=3){,}  
  }
  
  /* I want above code to work like this:
  requestType: "updateRow",
  customerId: 12345,
  customerName: John Doe,
  customerContact: XXXXXXXXXX,
  customerEmail: xxxxxx@xxx.com
  */
},
function(data)
{
 //Success Code Lines..........
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<input type="text" id="customerId" value="12345"/>
<br>
<br>
<input type="text" id="customerName" value="John Doe"/>
<br>
<br>
<input type="text" id="customerContact" value="XXXXXXXXXX"/>
<br>
<br>
<input type="text" id="customerEmail" value="xxxxxx@xxx.com"/>

Also would like to know how to prevent from getting SQL Injection

Thank You!

</div>
  • 写回答

2条回答 默认 最新

  • doutao5419 2016-02-02 14:52
    关注

    Could i use for loop to create dynamic objects inside $.post.

    Not inside the call to .post(), no. Which has nothing to do with .post() itself or with AJAX or anything like that, but simply as the syntax of the language. Consider your attempt:

    $.post("url.php",
    {
      requestType: "updateRow", 
      for(var y=0;y<4;y++)
      {
        boxFields[y]: boxVar[y] 
        if(y!=3){,}  
      }
      //...
    

    The second argument to the function is simply an object. And things like loops and other control structures aren't valid for declaring an object. What you can do is, well, what you already did before. Build the object, then use it in the function call:

    var someArray = [];
    for(var x = 0; x < 4; x++)
    {
        someArray[x] = someValue;
    }
    // etc.
    
    // later...
    $.post('url.php', someArray, function () { /.../ });
    

    Basically, a loop is not an object that can be passed to a function. It's a control structure for imperative code.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据