在 ajax 中为 URL 实现 if 和 else 语句

发布于 2025-01-14 21:05:32 字数 401 浏览 0 评论 0原文

我有一个带有下拉值等的表单,它允许我们的最终用户将文档上传到我们的服务器。是否可以实现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日久见人心 2025-01-21 21:05:32

1- 对 url 使用变量:

let selection = $('foo option:selected').val()

if(selection == 'Main Documents')
   url_repo = '/ABC/REPO_1/'
else
   url_repo = '/ABC/REPO_2/'

$.ajax({
   url: url_repo,
   type: "POST"..

2- 一行:

$.ajax({
       url: ($('foo option:selected').val()=='Main Documents') : "/ABC/REPO_1/" ? "/ABC/REPO_2/" ,
       type: "POST"..

1- use a variable for url:

let selection = $('foo option:selected').val()

if(selection == 'Main Documents')
   url_repo = '/ABC/REPO_1/'
else
   url_repo = '/ABC/REPO_2/'

$.ajax({
   url: url_repo,
   type: "POST"..

2- one line:

$.ajax({
       url: ($('foo option:selected').val()=='Main Documents') : "/ABC/REPO_1/" ? "/ABC/REPO_2/" ,
       type: "POST"..
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文