如何将脚本集成到应用程序中?

时间:2018-07-26 10:17:11

标签: javascript casperjs

我用casperjs制作了一个脚本,可以自动进行购买。

我想创建一个应用程序,以便其他不进行编码的人都可以使用它。

如何将脚本放入应用程序中,并能够根据使用它的人来更改信息?

预先感谢您的回答

1 个答案:

答案 0 :(得分:1)

您可以使用CasperJS command line parser访问位置参数命名选项,以根据使用程序的人来更改程序。

例如:

 str_user_profile = "SELECT first_name, last_name, nick_name, username, password, user_pic FROM  ut_users WHERE (user_id LIKE '" + user_id + "')"

        qr_user_profile = QSqlQuery()
        qr_user_profile.exec(str_user_profile)
        try:
            while qr_user_profile.next():
                first_name = str(qr_user_profile.value(0)).strip()
                last_name = str(qr_user_profile.value(1)).strip()
                nickname = str(qr_user_profile.value(2)).strip()
                username = str(qr_user_profile.value(3)).strip()
                pwd = str(qr_user_profile.value(4)).strip()
                img_data = qr_user_profile.value(5)

然后,您可以从应用程序中使用您选择的参数或选项来调用命令并获得结果。

另一种解决方案是为您使用的语言使用CasperJS包装器。

以下是一些流行的CasperJS包装器: