#ded

dedecms5.7文章页替换掉特定标志的图片链接

 dedecms5.7文章页的替换掉特定标志的图片链接解决思路1个是在数据库里面执行替换操作我自己查看织梦后台也有这个功能 但是执行了一次效果不是很好 那么就用下面的 在模板中进行内容替换 这样风险最小代码如下找到 templatesdefaultarticl...

dedecms5.7文章页的标签随机插入到内容中并且标签的地址为其标签关联的其他文章地址

dedecms5.7文章页的标签随机插入到内容中并且标签的地址为其他标签关联的文章地址 1添加2个自定义函数在dede/include/extend.func.php底部添加如下代码//根据文章ID获取文章的标签然后根据标签随机获取不是本地址的文章地址functiongettaglink($aid){glob...

dedecms5.7的获取本文章的TAG

tag调用标签如下:{dede:tagrow='10'getall='1'sort='month'}<li><ahref='[field:link/]'>[field:tag/]</a></li>{/dede:tag}具体你可以参考tag标记。标签名称:tag功能说明:T...
代码星球 ·2021-02-11

dedecms5.7的文章详情页页面标题加载指定txt文本的随机关键字

dedecms5.7的文章详情页加载指定txt文本的随机关键字1实现代码如下{dede:namerunphp='yes'}$file_path="../test.txt";$file_arr=file($file_path);for($j=0;$j<count($file_arr);$j++){//逐行读取文件内...

dedecms用runphp功能,写for循环,@me输出不出来

今天在{dede:fieldname='typeid'runphp='yes'}中写for循环,出现@me输出不了内容,把for循环删掉之后,就可以输出。死了几十万脑细胞,没有解决,后来把循环for($i=0;$i<count($matchitem[0]);$i++)中的$i换成$j之后,问题解决了,可能是$i变...

dedecms5.7执行PHP代码的用法

dedecms5.7执行PHP代码的用法{dede:php}echo'test';{/dede:php} ...

thinkphp5中Indirect modification of overloaded element of XXX has no effect的解决办法

最近在使用Thinkphp5做foreach循环嵌套的时候报错:IndirectmodificationofoverloadedelementofXXXhasnoeffect,网上搜索了一下,很多框架会报这个错误,比如Laravel、YII、Thinkphp5等,错误的直译意思为:间接修改XXX的重载元素没有效果。解决...

文件上传失败 -nginx报错 client intended to send too large body: 1331696 bytes

location/{root/data/fastdfs/data;includegzip.conf;ngx_fastdfs_module;client_max_body_size100m;expires12h;}  client_max_body_size100m;设置上传大小限制   2...

Failed to decode downloaded font

这是由于maven编译的问题。在resource里面让font和ttf结尾的文件通过今天又出现这个问题了。2018-12-1922:59<resources><resource><directory>src/main/webapp</directory><filte...

Recommended Settings for Tracing and Message Logging

https://docs.microsoft.com/en-us/dotnet/framework/wcf/diagnostics/tracing/recommended-settings-for-tracing-and-message-logging <configuration><sys...

Unable to update auto-refresh reference 'microsoft.codedom.providers.dotnetcompilerplatform.dll'.

Unabletoupdateauto-refreshreference'microsoft.codedom.providers.dotnetcompilerplatform.dll'.Cannotfindassembly'D:JENKINS_HOMELISA6.0CMSSolutionpackagesMicrosoft...

The destination you provided is not a full refname (i.e., starting with "refs/")

$gitpushv5v5/hotfix/5.1:hotfix/5.1-quartzerror:Thedestinationyouprovidedisnotafullrefname(i.e.,startingwith"refs/").Wetriedtoguesswhatyoumeantby:-Lookingforaref...

How to run a function when the page is loaded?

window.onload=codeAddress; shouldwork- here'sademo,andthefullcode:方法1<!DOCTYPEhtml><html><head><title>Test</title><me...
代码星球 ·2021-02-08

Error, DNGuard Runtime library not loaded!

   // Token: 0x06008CE9 RID: 36073 RVA: 0x0059629A File Offset: 0x00591E9A    &n...

Avoided redundant navigation to current 冗余导航报错

发现原因:做vue项目中,不断重复点击当前路由导航会发生报错,  解决方案:constoriginalPush=VueRouter.prototype.push;VueRouter.prototype.push=functionpush(location){returnoriginalPush.ca...
首页上一页...2223242526...下一页尾页