在 ajax 中为 URL 实现 if 和 else 语句
我有一个带有下拉值等的表单,它允许我们的最终用户将文档上传到我们的服务器。是否可以实现 if 和 else 语句来根据表单上选择的值切换 .ajax URL?问题是,我们希望将特定文档保存在单独的目录中,这意味着我们有 2 个存储库。
$.ajax({
url: "/ABC/REPO_1/",
type: "POST"..
我想实现一个 if 和 else 来根据从前端表单中选择的值来交换目录。
示例:
if(htmldirectory == 'Main Documents', "/ABC/REPO_1/", "/ABC/REPO_2/")
希望这是有道理的,如果没有,请让我知道我可以在哪里澄清。非常感谢大家。
I have a form with dropdown values, etc which allows our end users to upload documents to our server. Is it possible to implement an if and else statement to switch the .ajax URL depending on a value selected on the form? The issue is, we want to keep specific documents in a separate directory entirely meaning we have 2 repos.
$.ajax({
url: "/ABC/REPO_1/",
type: "POST"..
I would like to implement an if and else to swap the directories depending on the value selected from my form on the front end.
example:
if(htmldirectory == 'Main Documents', "/ABC/REPO_1/", "/ABC/REPO_2/")
Hoping this makes sense, if not please let me know where I can clarify. Much thanks everyone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1- 对 url 使用变量:
2- 一行:
1- use a variable for url:
2- one line: