phpcms中使用js时遇到的难题估计还没有人关注过
比如
$('#moveImage').bind('dblclick',function(){
window.location.href='{APP_PATH}index.php?m=special&c=index&a=special&siteid={$siteid}';
})
中的要写大括号标签,这么写肯定不行,要被解析错误的
但是要转义,试了一下也不行
如
$('#moveImage').bind('dblclick',function(){
window.location.href='\{APP_PATH\}index.php?m=special&c=index&a=special&siteid=\{$siteid\}';
})
那么问题来了,难道js中真的没有办法写入phpcms的标签符号吗,我估计这么多年了,我是第一个关注这种问题的,因为全论坛没有这方面的帖子.
回复讨论(解决方案)
应该是你写的不符合规范,否则就不可能只有你会遇到问题
1、APP_PATH 是什么?
如果是常量,那么你这样写在串中是错误的
如果不是常量,则一定有替换字符串为值的地方。那么该不该有大括号括起就是个问题了。即替换时是否会将大括号一起替换掉
这要看看做这事的代码了
2、在 js 中,除非有特殊需要是不必书写而外的路径的,如果写了则必须是绝对路径,否则就会被解释为子目录了
而你的 APP_PATH 显然是项目目录
3、你可以在浏览器中查看网页源文件,看看这部分变成什么了
不好意思刚睡醒脑子有点不清醒不太理解你的意思。
PHPCMS的模板引擎比较简单高效,也就是说只要花括号开始闭合都在同一行内且中间没有空格(loop、for、if、pc、php以及调用函数和允许出现空格 ),那么都会被模板引擎匹配到(常量、变量、自增自减等)。
详细的可以看模板引擎phpcms/libs/classes/template_cache.class.php中template_parse()方法。
然后看你最后一句,我暂且理解为在模板文件中script里调用模板标签,可以准确的告诉你是可以的,因为在模板引擎中,并没有对标签调用位置进行判断。
<script type="text/javascript">alert({APP_PATH});</script>
会弹出站点地址
所以,只要是在模板文件中,绝对可以在script中调用模板标签,反之,如果要在script中输出"{APP_PATH}",貌似只能通过加转义实现。
当然如果任性地在js文件中调用那就.......2333333333333333
<script type="text/javascript">alert("{APP_PATH}");</script>
行不行的?
<script type="text/javascript">alert("{APP_PATH}");</script>
这样能运行么
<script type="text/javascript">alert("{APP_PATH}");</script>
这样能运行么
那个楼主在PHPCMS论坛提问了然后就放弃这边结贴了,个西八= =。回复楼上,可以的~!!!
var path='{APP_PATH}';
$('#moveImage').bind('dblclick',function(){
window.location.href=path+'index.php?m=special&c=index&a=special&siteid={$siteid}';
})
呵呵
随便看看,偶不说话
<script type="text/javascript">alert("{APP_PATH}");</script>
这样能运行么
那个楼主在PHPCMS论坛提问了然后就放弃这边结贴了,个西八= =。回复楼上,可以的~!!!
想要得分很简单,你只要解决这个问题就行,又想得分,又不想解决问题,你回家问问你妈,有这好事吗

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
