ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
`jyx_find(table,id,field)` 例如,配置参数: <table> <thead> <tr> <th>参数</th> <th>描述</th> </tr> </thead> <tbody> <tr> <td>table</td> <td>表名</td> </tr> <tr> <td>id</td> <td>查询提交 </td> </tr> <tr> <td>field</td> <td>返回的字段名(*) 如果是*将返回全部数据(数组)</td> </tr> </tbody> </table> <blockquote> <p>id 如果为数组参照thinkphp中查询规则 不为数组直接默认主键相等匹配</p> </blockquote> 示例: ~~~ {:jyx_find('user',array('id'=>1,'username'=>'admin'),'password')} ~~~