Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于我在 EZPublish 中构建的项目,我使用 EZJScore 模块生成 JSON 数组。Ezjscore 要求我用双冒号分隔参数,例如:
http://[域]/ezjscore/call/news::cat::3
经过数小时的测试,我得出结论 jquery 无法解析带有双冒号的 URL。至少getjsonandajax函数不能处理这个......
getjson
ajax
有人知道这个问题的解决方案或解决方法吗?
提前致谢。
尝试post通过劫持表单的提交来使用 jQuery 函数,并确保在 ezjscore php 函数中返回 JSON。像这样的东西:
post
$.post($(this).attr('action') + '/ezjscore/call/', 'news::cat::3, function (data) {},'json');