博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tp5 前台 点击显示一个弹窗
阅读量:5134 次
发布时间:2019-06-13

本文共 1405 字,大约阅读时间需要 4 分钟。

例子

1.静态

{foreach name="recruitment" item="vo"}
{$vo.special}

工作职责:

{$vo.description}

点击查看>>>
{/foreach}

2.js

   
function openWind(tit,w,h,url) {
$.dialog({
title:tit, width:w+"px", height:h+"px", content:'url:'+url, fixed:false }); }

 3.控制器内

namespace app\home\controller; use app\home\model\RecruitmentModel; use think\Controller; use think\Db; class Recruitment extends Base {
public function recruitment(){
$recruitment = Db::name('recruitment')->select(); $this -> assign('recruitment',$recruitment); return $this->fetch(); } public function getData(){
$id = input('param.id'); $model = new RecruitmentModel(); $result = $model->getIntro($id); $this->assign('result',$result); return $this->fetch(); } }

4.模型内

namespace app\home\model; use think\Model; use think\Db; class RecruitmentModel extends Model {
public function getKuang($id){
$goods = $this->where('id',$id)->find(); } public function getIntro($id){
return Db::name('recruitment')->where('id',$id)->find(); } }

 

转载于:https://www.cnblogs.com/dennyxiao/p/8441482.html

你可能感兴趣的文章
jstl标签库基础教程及其使用代码
查看>>
中期蒙混过关,后期要早点起步4.13-4.19
查看>>
redisson笔记
查看>>
less 使用小结!笔记!
查看>>
安装阿里Java代码规约插件
查看>>
c语言运算优先级与结合方向的问题
查看>>
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "FileSize"
查看>>
html常用标签总结
查看>>
VMware ESXi 虚拟机硬盘格式:精简置备、厚置备延迟置零、厚置备置零
查看>>
洛谷 P2764(最小路径覆盖=节点数-最大匹配)
查看>>
iphone safari不支持position fixed的解决办法
查看>>
Mysql err 1055
查看>>
Nginx 0.8.x + PHP 5.2.13(FastCGI)搭建胜过Apache十倍的Web服务器 (转载)
查看>>
Python-装饰器
查看>>
代码静态检查工具PC-Lint运用实践
查看>>
dsu + lca
查看>>
软工网络15个人作业4——alpha阶段个人总结
查看>>
Linux基础-2文件及目录管理
查看>>
python re.sub
查看>>
《程序是怎样跑起来的》第二章
查看>>