本文介绍了Webjob问题 - 我还可以在线调整我的脚本文件吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用非常混乱的设置创建Azure webjob是很多工作。

Creating an Azure webjob is a lot of work with very confusing settings.

我曾经能够直接在网络上编辑我的webjob的index.js脚本文件浏览器".scm.azurewebsites.net"调试控制台。

I used to be able to edit my webjob's index.js script file directly in the web browser ".scm.azurewebsites.net" debug console.

我相信你最近为我的webjobs移动了实际的脚本文件?

I believe you have recently moved the actual script files for my webjobs?

你能让我知道如何调整我的webjob's脚本文件? 我只需要在脚本中添加一些参数。删除现有的webjob并重新创建一个新的webjob似乎是一个非常繁琐的过程。

Can you let me know how I can adjust my webjob's script file?  I simply need to add a few parameters to the script. Deleting the existing webjob and recreating a new one seems like a very tedious process.

谢谢,

Norm

推荐答案

您可以FTP或导航到.scm.azurewebsites.net / debugConsole - >根据webjob类型浏览到下面的路径,您可以单击资源旁边的铅笔图标来修改脚本文件。

You can FTP or navigate to .scm.azurewebsites.net/debugConsole -> browse to the path below depending on the webjob type and you can click on the pencil icon next to the resource to modify script files.

要部署触发的作业,请将二进制文件复制到:  d:\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ c>

To deploy a triggered job copy your binaries to: d:\home\site\wwwroot\app_data\jobs\triggered\{job name}

要部署连续作业,请将二进制文件复制到:  d:\\\\\\\\\ wwwroot\app_data\jobs\continuous\ {job
name}

To deploy a continuous job copy your binaries to: d:\home\site\wwwroot\app_data\jobs\continuous\{job name}

https://github.com/projectkudu/kudu/wiki/WebJobs


这篇关于Webjob问题 - 我还可以在线调整我的脚本文件吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 10:04