如何在Swift中注入JS文件与PWA进行交互

时间:2019-09-27 12:38:38

标签: javascript swift progressive-web-apps

在迅速的iOS项目中,我添加了JS文件。 并使用WKWebview,

我的问题是

在iOS中我们需要编写吗?如何注入它?

const db = require('../database/db_config.js');

module.exports = {
    find
}

function find() {
    return db('accounts');
}

在用JS文件编写函数之前;

const JSInterface = {
alertMe: (text) => {
    alert(text + '-> in hello.js');
}
}

并注入JS

function alertMe(text) {
    alert(text + '-> in hello.js');
}

0 个答案:

没有答案