我的网站上有Facebook共享功能,我正在尝试根据用户提交的选项共享动态数据。在桌面上,一切正常,但在移动设备上,我遇到了特别是在Windows Mobile上的问题。任何想法如何排序?我的代码如下:
puts "Starting bundle install"
if system('bundle install')
puts 'bundle successful'
else
puts 'bundle failed, deleting cache file and retrying'
system('command to delete cache file goes here')
system('bundle install')
end
在Apple设备上,弹出窗口被阻止且不允许显示,除非用户通过自己的设置允许弹出窗口。不幸的是,由于客户群的性质,我需要绕过这个。
谢谢