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 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵
  • ¥15 cfx离心泵非稳态计算