如何连接到本地主机并访问端口?

时间:2019-01-23 08:20:06

标签: xampp ip localhost

我正在运行提供网页的xampp。我想通过W-LAN中的智能手机访问该页面。通过IP,我设法连接到我们办公室的网络。但是我无法连接到端口8012上运行的本地网页。有什么想法,可能是什么问题?

def validate_choice(ctx, param, value):
    # Check if the passed value is an integer.
    try:
        index = int(value) - 1
        # Return the value at the given index.
        try:
            return choice_names[index]
        # If the index does not exist.
        except IndexError:
            click.echo('Please select a valid index.')
    # If the value is of a different type, for example, String.
    except (TypeError, ValueError):
        # Return the value if it exists in the list of choices.
        if value in choice_names:
            return value
        else:
            click.echo('Please select a valid value from the choices {}.'.format(choice_names))

    # Prompt the user for an input.
    value = click.prompt(param.prompt)
    return validate_choice(ctx, param, value)

@click.option('--category', prompt='\nPlease enter the category.\n\n -- Options:\n{}\n\n'.format(choice_names),
              help='Category of the incident', callback=validate_category)

0 个答案:

没有答案