gpt4 book ai didi

osclass - 如何链接osclass中的城市区域?

转载 作者:行者123 更新时间:2023-12-01 11:44:21 28 4
gpt4 key购买 nike

我在 osclass 中有函数..

function item_city_area($cityarea_txt, $cityarea_select_txt) {
$aCityArea = osc_get_cityarea() ;
$item = (osc_item() != null) ? osc_item() : array() ;

switch( count($aCityArea) ) {
case 0: // 0 regions ?>
<div class="clearfix">
<label><?php echo $cityarea_txt ; ?></label>
<div class="input">
<input class="city_name" id="city_name" type="text" name="city" value="<?php echo get_city_name($item) ; ?>" />
</div>
</div>
<?php
break;
case 1: ?>
<input class="city_id" id="city_id" type="hidden" name="cityId" value="<?php echo get_city_id($item) ; ?>" />
<?php
break;
default: // more than one region ?>
<div class="clearfix">
<label><?php echo $cityarea_txt ; ?></label>
<div class="input">
<select class="cityarea_id" id="cityarea_id" name="cityArea">
<option value=""><?php echo $cityarea_select_txt ; ?></option>
<?php //foreach($aCityArea as $city) { ?>
<option value="<?php echo $city['pk_i_id'] ; ?>"><?php echo $city['s_name'] ; ?></option>
<?php //} ?>
</select>
</div>
</div>
<?php
break;
}
}

请帮我打电话和连接到城市..

最佳答案

您可以在搜索页面的主题文件夹内的搜索页面中看到示例。例如。主题/现代/search.php你可以调用对于您调用的城市

<?php item_city_box(__("city", "theme_name"), __("Select a city...", "theme_name")) ; ?>
**For the cityarea you can call as**
<?php item_city_area(__("cityarea", "theme_name"), __("Select a cityarea...", "theme_name")) ; ?>

对于city和cityarea的链接,你也必须修改你的数据库。你可以问你是否没有得到它。干杯

关于osclass - 如何链接osclass中的城市区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16771353/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com