在迅速的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');
}