这是我的网址:
192.168.0.101/user1/opc_autopart/upload/index.php?route=product/category&path=20
我想获取路径参数,下面是我的代码
{{ app.request.get('path') }}
此代码不起作用
答案 0 :(得分:0)
您可以使用:
private var segmentedControlTintColor: UIColor?
private var segmentedControlIsEnabled: Bool = true
// Due to, what seems to be, an iOS issue, the segmented control is not decolorized when the info popover is
// on screen. The two functions below mimick iOS behavior until a better solution is found.
func decolorizeSegmentedControl()
{
segmentedControlIsEnabled = segmentedControl.isEnabled
segmentedControl.isEnabled = false
segmentedControlTintColor = segmentedControl.tintColor
UIView.animate(withDuration: 0.333)
{
self.segmentedControl.tintColor = self.segmentedControlIsEnabled ? .darkGray : .lightGray
}
}
func colorizeSegmentedControl()
{
segmentedControl.isEnabled = segmentedControlIsEnabled
UIView.animate(withDuration: 0.333)
{
self.segmentedControl.tintColor = self.segmentedControlTintColor
}
}
func prepareForPopoverPresentation(_ popoverPresentationController: UIPopoverPresentationController)
{
popoverPresentationController.permittedArrowDirections = .any
popoverPresentationController.barButtonItem = infoItem
decolorizeSegmentedControl()
}
func popoverPresentationControllerShouldDismissPopover(_ popoverPresentationController: UIPopoverPresentationController) -> Bool
{
colorizeSegmentedControl()
return true
}
在树枝中获取{{ app.request.query.get('path') }}
查询字符串。
如果没有path
参数,则最好定义一个默认值:
path