使用map调用__init__函数

时间:2016-12-02 14:28:21

标签: python constructor

我想通过为列表中的每个元素调用private async Task AsyncAction(object obj) { _isWorking = true; MyAsyncCommand.OnCanExecuteChanged(); await Task.Delay(2000); _isWorking = false; MyAsyncCommand.OnCanExecuteChanged(); } 来构建参数列表中的对象列表。有可能吗? 这是一个例子:

__init__

1 个答案:

答案 0 :(得分:5)

没有理由指定<?php if ( isset( $_POST[ 'flight' ] ) ) { $flightNO = $_POST[ 'flight' ]; } else { $flightNO = null; } $connect = mysqli_connect( "localhost", "root", "" ); mysqli_select_db( $connect, "airportdb" ); ?> <!-- Form --> <section id="two" class="wrapper style3"> <div class="container"> <h2 align="center">Welcome to Dublin Airport Flight Information Helpdesk</h2> <div class="container 50%" align="center"> <!-- Dropdown Box --> <!-- Query --> <?php $result = mysqli_query( $connect, "select flight from arrivals" ); ?> <form action="arrivals.php" method="post"> <div class="row uniform" align="center"> <div class="6u 12u$(small)"> <div class="select-wrapper"> <select name="flight"> <option value="All">- All -</option> <?php while ( $row = mysqli_fetch_array( $result ) ) { echo '<option value ="' . $row[ 'flight' ] . ">" . $row[ 'flight' ] . '</option>'; } echo '</select>'; ?> </div> </div> <div class="6u 12u$(small)"> <ul class="actions"> <li><input value="Find" class="special" type="submit"> </li> </ul> </div> </div> </form> </div> </div> </section> <!-- Table --> <section id="three" class=" wrapper style2"> <div class="container"> <div class="table-wrapper"> <?php if(isset($_POST['flight'])) $result = mysqli_query($connect, "select * from arrivals where flight='$flightNO'"); else $result = mysqli_query($connect, "select * from arrivals"); echo '<h4>Flight Information for '.date('l d F Y'). ', '. date('h:i:s a'). '</h4>'; echo '<hr>'; echo'<table>'; echo '<thread> <tr> <th><font size="+1">Terminal</th> <th><font size="+1">Origin</th> <th><font size="+1">Airline</th> <th><font size="+1">Flight No</th> <th><font size="+1">Scheduled Date</th> <th><font size="+1">Scheduled Time</th> <th><font size="+1">Status</th> </tr> </thead>'; while($row=mysqli_fetch_array($result)) { echo '<tbody align="left">'; echo '<tr>'; echo '<td>' . $row['terminal'] . '</td>'; echo '<td>' . $row['origin'] . '</td>'; echo '<td>' . $row['airline'] . '</td>'; echo '<td>' . $row['flight'] . '</td>'; echo '<td>' . $row['scheduledDate'] . '</td>'; echo '<td>' . $row['scheduledTime'] . '</td>'; echo '<td>' . $row['status'] . '</td>'; echo '</tr>'; echo '</tbody>'; } echo '</table>'; mysqli_close($connect); ?> </div> </div> </section> <!--end table php --> ;从未明确调用过。只需__init__即可。