<span class="index_tag"
v-bind:style="{ 'background-color': z.color}">
{{z.xxxxx}}
</span>
月度归档: 2021年5月
Thinkphp6 AipNlp
require_once dirname(__DIR__).'/../../aip/AipNlp.php';
$APP_ID = 'xxxxxx '; $API_KEY = 'xxxxxxxxxxxxxx'; $SECRET_KEY = 'xxxxxxxxxxxxxx'; $client = new \AipNlp($APP_ID, $API_KEY, $SECRET_KEY);
mysql 字段递增update
set @rownum=1;
update ay_content
SET gnote = (
select @rownum := @rownum +1 as nid)