尝试让 HTML HREF SMS link 在 jasonette 中为 android 工作
Trying to get HTML HREF SMS link working in jasonette for android
我有一个 SMS href link,它在移动浏览器中运行良好,但当使用 jasonette 部署到 android 时,我得到 ERR_UNKOWN_URL_SCHEME。有没有简单的解决方法或者甚至可能?
<a href="sms://+15558675309">Text</a>
这是我的 json 文件-
{
"$jason": {
"head": {
"title": "Web Container Agent"
},
"body": {
"background": {
"type": "html",
"url": "www.mysite.com/test.php",
"id": "app",
"action": {
"type": "$default"
}
}
}
}
}
我对此很陌生,但我也遇到过同样的问题,通过设置正确的视图已解决。
"view": "app"
这样的东西行得通
{ "type": "label",
"text": "text message",
"href": {
"url": "sms://+87687687688678",
"view": "app"
}
我有一个 SMS href link,它在移动浏览器中运行良好,但当使用 jasonette 部署到 android 时,我得到 ERR_UNKOWN_URL_SCHEME。有没有简单的解决方法或者甚至可能?
<a href="sms://+15558675309">Text</a>
这是我的 json 文件-
{
"$jason": {
"head": {
"title": "Web Container Agent"
},
"body": {
"background": {
"type": "html",
"url": "www.mysite.com/test.php",
"id": "app",
"action": {
"type": "$default"
}
}
}
}
}
我对此很陌生,但我也遇到过同样的问题,通过设置正确的视图已解决。
"view": "app"
这样的东西行得通
{ "type": "label",
"text": "text message",
"href": {
"url": "sms://+87687687688678",
"view": "app"
}