如何将wsdl响应保存在js变量中

时间:2019-07-11 16:36:59

标签: javascript php firebase

我通过表单将值发送到php ws,它响应一个数组,如何将数组数据保存在js变量中?当我将数据提交到php url时,我只需要将响应保存在js变量中,然后就知道如何将其保存在firebase中。

我有index.htm,它与将数据发送到firebase的app.js连接。 原始索引可用于填写表格,并在提交时打印表格并发送数据。

<form name="formulario"method="get"action="http://www.redapoyo-tc.com/TSO2.php">

    <p> Usuario: <input type="text"name="US"value=""/></p>
    <p> Clave: <input type="text"name="PW"value=""/></p>
    <p> Placa: <input type="text"name="PL"value=""/></p>

    <input type="submit"/>

它响应:

  

Array([placa] => KUM039 [latitud] => 4.315477 [longitud] =>   //-76.075687 [direccion] => Km 14 de lavíaBugalagrande-扎尔扎尔,,   瓦尔// del Cauca [fecha / hora] => 2019-07-11T16:23:11-04:00)

需要将数组保存在单独的变量中,并打印如下表格:

</tr><table class="table">
    <thead>
      <tr>
        <th scope="col">placa</th>
        <th scope="col">latitud</th>
        <th scope="col">direccion</th>
        <th scope="col">fecha/hora</th>

0 个答案:

没有答案